$(document).ready(function() {
	$('.videothumb').hover(
	  function () {
	    $(this).addClass("videohover");
	  },
	  function () {
	    $(this).removeClass("videohover");
	  }
	);
	$('.videothumb').click(function() {
		$('#showvideo').html('<div id="videoheader"><a href="#closevideo" id="closevideo"><img src="/images/button-close.gif" width="66px" height="22px" /></a></div><iframe src="http://www.youtube.com/' + $(this).attr('id') + '" title="YouTube video player" width="640" height="390" frameborder="0" allowfullscreen></iframe>');
		$('#showvideo').animate({
			height: 412
		}, 500);
	});
	$('#closevideo').live('click', function() {
		$('#showvideo').animate({
			height: 0
		}, 500);
		return false;
	});
});
