$(document).ready(function () { 
	$("img.video").mouseover(function(){
		$(this).animate({border:"5px solid", height:"82", width:"112"}, { queue:false, duration:1 });
	});
	$("img.video").mouseout(function(){
		$(this).animate({border:"1px solid", height:"90", width:"120"}, { queue:false, duration:1 });
	});
	$("a.video_note").click(function() {
		$(this).attr("href", function(){
			mylink=this.href.replace("noter", "noter_jquery"); 
			$(this).attr("href", mylink );
		});
		$("#tableau_video_note").load(this.href);
		return false;
	});
});