/**
 * @author sanjay
 */

$(function(){
	$(".li-dropdown").hover(
          function(){
		$(this).children("#submenu-container").css("display", "block");
	},
	function(){
		$(this).children("#submenu-container").css("display", "none");
	});
});