var menuJS_li = 0;


$(document).ready(
	function() {
		$('.menuJS_li').hover(
			function () { // mouse hover
				menuJS_li = $(this).attr('id').substr(9);
				$(this).css({cursor: 'pointer'});
				$('#menuJS_ul2'+menuJS_li).css({display: 'block'});
			}
			,
			function () { // mouse leave  
				$(this).css({cursor: 'auto'});
				$('#menuJS_ul2'+menuJS_li).css({display: 'none'});
			}
		);
		
		
		$('.menuJS_li2').hover(
			function () { // mouse hover
				$(this).css({backgroundColor: '#ffffff'});
			}
			,
			function () { // mouse leave  
				$(this).css({backgroundColor: '#7082c8'});
			}
		);
		
		
		
		$('.menuJS_li p').click(
			function () {
				window.location = $(this).find('a').attr('href');
			}
		);
		
		$('.menuJS_li2 p').click(
			function () {
				window.location = $(this).find('a').attr('href');
			}
		);
	}
);
