jq(document).ready(function() {	
	jq(".mune_thumb ul li:first").addClass('active'); 
	jq(".mune_thumb ul li").mouseover(function(){ 
		var imgTitle = jq(this).find('img:first').attr("src"); //Get Main Image URL
		var qiZhe_Id = jq(this).find('a').attr("id");
		var myBan=jq("#ban");
                var qiZhe_Href = myBan.attr("href");
		myBan.removeAttr("href");
		//´óÍ¼µÄÁ´½Ó
		if(qiZhe_Id==1){
			 myBan.attr("href","space.php?uid=179&do=thread&id=9807");
		}else if(qiZhe_Id==2){
			 myBan.attr("href","shipin.php");
		}else if(qiZhe_Id==3){
			 myBan.attr("href","space.php?do=event&id=22");
		}else{
			 myBan.attr("href","langsong.php?action=mp3list&&lid=f2f08149ef300551067c4a4e45dcb00eMTAy");
		}	
		if (jq(this).is(".active")) {  //If it's already active, then...
			return false; // Don't click through
		} else {	        
                        jq(".examples_image img").attr({ src: imgTitle});
			jq(".examples_image a").attr({ src: qiZhe_Href});
		
		}
		jq(".mune_thumb ul li").removeClass('active'); //Remove class of 'active' on all lists
		jq(this).addClass('active');  //add class of 'active' on this list only
		return false;	
	}) 
});
