$(document).ready(function(){
	$("a.mn1 img").hover(function(){
		$(this).fadeTo("normal", 0.6);
		$("#mainmenu_left").css("background", "url(images/menu/pop1.jpg) no-repeat");
	},function(){
       $(this).fadeTo("normal", 1.0);
    });
	$("a.mn2 img").hover(function(){
		$(this).fadeTo("normal", 0.6);
		$("#mainmenu_left").css("background", "url(images/menu/pop2.jpg) no-repeat");
	},function(){
       $(this).fadeTo("normal", 1.0);
    });
	$("a.mn3 img").hover(function(){
		$(this).fadeTo("normal", 0.6);
		$("#mainmenu_left").css("background", "url(images/menu/pop3.jpg) no-repeat");
	},function(){
       $(this).fadeTo("normal", 1.0);
    });
	$("a.mn4 img").hover(function(){
		$(this).fadeTo("normal", 0.6);
		$("#mainmenu_left").css("background", "url(images/menu/pop4.jpg) no-repeat");
	},function(){
       $(this).fadeTo("normal", 1.0);
    });
	$("a img#mp3btn").hover(function(){
		$(this).attr("src", "images/mp3btn_b.jpg");
	}, function(){
		$(this).attr("src", "images/mp3btn.jpg");
	});
});
