jQuery(document).ready(function () {	
		jQuery('#nav ul.menu > li').addClass("dropdown_trigger");

	jQuery('ul.menu  li.dropdown_trigger').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(100);
			jQuery('a', this).css({'background-position':'0% -57px'});
			jQuery('span', this).css({'background-position':'100% -57px','color':'white'});
        

		}, 
		function () {
			//hide its submenu
			jQuery('ul', this).slideUp(100);		
			jQuery('a', this).css({'background-position':'0% 0px'});
			jQuery('span', this).css({'background-position':'100% 0px','color':'#666'});
		}
	);
	
});

