var menuJS_li = 0;


$(document).ready(
	function() {
		$('.menuJS_li').hover(
			function () { // mouse hover
				menuJS_li = $(this).attr('id').substr(9);
				$(this).css({cursor: 'pointer', backgroundImage: 'url("../images/menu-li-hover.jpg")', backgroundRepeat: 'repeat-x', border: '1px solid #2d2d2d', height: '25px', lineHeight: '25px'});
				$('#menuJS_ul2'+menuJS_li).css({display: 'block'});
			}
			,
			function () { // mouse leave  
				$(this).css({cursor: 'auto', backgroundImage: 'none', border: '0', height: '27px', lineHeight: '27px'});
				$('#menuJS_ul2'+menuJS_li).css({display: 'none'});
			}
		);
		
		
		$('.menuJS_li2').hover(
			function () { // mouse hover
				$(this).css({backgroundColor: '#ecfb84'});
			}
			,
			function () { // mouse leave  
				$(this).css({backgroundColor: '#4c7cf6'});
			}
		);
		
		
		
		$('.menuJS_li p').click(
			function () {
				document.location.href = $(this).children('a').attr('href');
			}
		);
		
		$('.menuJS_li2 p').click(
			function () {
				document.location.href = $(this).children('a').attr('href');
			}
		);
	}
);
