$(document).ready(function() {
jQuery.noConflict()
	jQuery('.lev1 a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			jQuery(this).stop().animate({backgroundPosition:"(0 -250px)"}, {duration:300})
		})
		.mouseout(function(){
			jQuery(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:300})
		})

	
	
	jQuery('.stage .head .menu ul li ul').parent().each(function() {
	
		jQuery(this).mouseenter(function() {
		
			jQuery(this).children('ul').fadeIn(300);
		
		});
		
		jQuery(this).mouseleave(function() {
		
			jQuery(this).children('ul').fadeOut(300);
		
		});
	
	});

});

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

