$(document).ready(function(){
	
	$(".hover").mouseover(function(){
		dot=$(this).attr('src').lastIndexOf('.');
		name=$(this).attr('src').substring(0,dot);
		suffix=$(this).attr('src').substring(dot);
		$(this).attr({src : name+"_hover"+suffix});
	}).mouseout(function(){
	    	$(this).attr({src : name+suffix});
	});
});

$(document).ready(function() {
	var params = { allowScriptAccess: "always", wmode: "transparent" , loop: "1" };
	var atts = { id: "myytplayer" };
	swfobject.embedSWF("http://www.youtube.com/apiplayer?enablejsapi=1&playerapiid=ytplayer", "ytapiplayer", "100%", "100%", "8", null, null, params, atts);

});	

var ytplayer;
function onYouTubePlayerReady(playerId) {
  ytplayer = document.getElementById("myytplayer");
  loadNewVideo('6X1oAnfHLf8',0);
  ytplayer.mute();
}