	$(document).ready(function () {	

	$('#menu li a.limenu').hover(
		function () {
		
			$(this).css("color","#000000");
			$(this).css("background-image","url('images/menu_elem_hover.png')");
			$(this).css("background-repeat","no-repeat");
			$(this).css("background-position","left bottom");

		}, 
		function () {
			
			$(this).css("color","#7f7f7f");
			$(this).css("background-image","url('images/menu_elem.png')");
			$(this).css("background-repeat","no-repeat");
			$(this).css("background-position","left bottom");		
		}
	);
		$('#menu li ').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(200);

		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(200);			
		}
	);
	
	/*$('#menu li ul li a').hover(
	
		function() {
			$(this).parent().parent().parent().find('.limenu').css('color','#000000');
			$(this).parent().parent().parent().find('.limenu').css("background-image","url('images/menu_elem_hover.png')");
		},
		function() {
			$(this).parent().parent().parent().find('.limenu').css('color','#7f7f7f');
			$(this).parent().parent().parent().find('.limenu').css("background-image","url('images/menu_elem.png')");
		}
	);*/

});
