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