$(document).ready(function() {
	$("#video-bar a").hover(function() {
		$(this).next("span.tooltip").animate({opacity: "show",  bottom: "76"}, 200);
	}, function() {
		$(this).next("span.tooltip").animate({opacity: "hide", bottom: "80"}, 80);
	});
	
	$(".youtube").colorbox({width:'660', height:'420', inline:true, href:"#youtubeVid"}, function() {
			var vidID = this.href.replace('http://www.youtube.com/watch?v=', "");
			$("#youtubeVid").html('<object width="600" height="344"><param name="movie" value="http://www.youtube.com/v/' + vidID + '&hl=en&fs=1&autoplay=1&rel=0&color1=0x5d1719&color2=0xcd311b"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/' + vidID + '&hl=en&fs=1&autoplay=1&rel=0&color1=0x5d1719&color2=0xcd311b" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="600" height="344"></embed></object>');
	});
});	