 function LoadMovie(id) {
   	var s1 = new SWFObject("/stuff/mediaplayer.swf","mediaplayer","320","285","7");
	s1.addParam("allowfullscreen","true");
	s1.addVariable("width","320");
	s1.addVariable("height","285");
	s1.addVariable("file",id);
	s1.write("container1");
   }
   
$(document).ready(function(){
	$("#news_tale .news_disc").hover(function() {
    	$(this).css({"cursor":"pointer"});
			}, function() {
    	$(this).css({"cursor":"normal"});	
		}); 
	$("#news_tale .news_disc").click(function(){
		window.location=$(this).find("a").attr("href");return false;
	});
});