$(document).ready(function(){

//var hashCheck = window.location.hash;

$("#playlist a").click(function(){
	var playerVideo = $(this).attr("href");
	playerVideo = playerVideo.replace("http://www.youtube.com/watch?v=","");
	$('#video div.player').html('');
	$('#video div.player').html('<iframe id="player" width="650" height="356" src="http://www.youtube.com/embed/'+playerVideo+'?wmode=transparent" frameborder="0" allowfullscreen></iframe>');
	return false;
});

$("#header h1 a").hover( function(){ $(this).fadeTo("fast",0.8); }, function(){ $(this).fadeTo("fast",1); } );
$("#connect a").fadeTo(0,0.6).hover( function(){ $(this).fadeTo("fast",1); }, function(){ $(this).fadeTo("fast",0.6); } );
$('#connect a').tipsy({fade: true, live: true, offset: 2});
});
