

$(document).ready(function () {

	$('ul.dropdown').hover(
		
		function () {
				//change the background of parent menu
				$(this).find('li a.parent').addClass('hover');
				
				//display the submenu
				$(this).find('div.children').show();
				
			},
		
			function () {

				//change the background of parent menu
				$(this).find('li a.parent').removeClass('hover');			

				//display the submenu
				$(this).find('div.children').hide();
				
			}
		
		);

	}
);
	

