$(document).ready(function() {

	$('div#flv').flash({									
	  src: 'playwer.swf',
	  width: 640,
	  height: 426,
	  id: 'player',
	  wmode: 'transparent', 
	  flashvars: {file:'ooLOVE.flv'}
	});
		
	$("a > img").mouseover(function(){
		var txt = $(this).attr("src");
		txt = txt.substring(0,txt.length-4);
		$(this).attr("src",txt +"_r.jpg");
	});
	$("a > img").mouseout(function(){
		var txt = $(this).attr("src");
		txt = txt.substring(0,txt.length-6);
		$(this).attr("src",txt +".jpg");
	});
});
