jQuery(document).ready(function(){
	//Navigation
	jQuery("#sub-menu li").hover(function(){
		jQuery(this).find("div:first").toggle();
	});
});
