$(function(){
	$(".menu").find(":last").css("border","0px");
	$(".menu li").hover(function(){
		$(this).css("background","#D496F1");

	},function(){
		$(this).css("background","#43286B");
	});
			
});

//原来flash效果的代码
$(function(){
	var img_src_f=$("#pic_lv").find(":first").attr("src");
	$("#pic_y img").attr("src",img_src_f);

	$('#pic_lv img').css("opacity","0.4");
	$('#pic_lv img').mouseover(function()
	{
		$(this).animate({
		opacity:"1"
		})
	}).mouseout(function()
	{
		$(this).animate({
			opacity:"0.6"
		})
	});
	$("#pic_lv img").click(function(){
		
		var img_src=$(this).attr("src");
		$("#pic_y img").attr("src",img_src).hide();
		$("#pic_y img").fadeIn("slow");
	});

});