function videoChange(url){
			var s1 = new SWFObject(url,"ply","512","421","9","#000000");
			s1.addParam("allowfullscreen","true");
			s1.addParam("allowscriptaccess","always");
			s1.write("video_object");
}


$(function(){

  var url = $('#video_object').children('a').attr('href');
  videoChange(url);

	$("#backNumber ul li a").click(function(){
    var url = $(this).attr('href');
    videoChange(url);
    return false;
  });

	$("#header_napo").draggable();
	$("#header_napo").dblclick(function(){
    $(this).animate({"left":"272px", "top":"263px"});
  });
	$("#footer #chari").click(function(){
    $(this).animate({"right":"1040px"}, 1200);
    $(this).hide(slow);
    $(this).show(1200);
    $(this).animate({"right":"0px"}, 0);

  });


});

