$().ready(function() {
	$("a#triggerEmbed").click(function() {
		$("#embedLink").show();
		$("#stwrapper").hide();
		return false;
	});
	
	$("div.share a").click(function() {
		$("#stwrapper").show();
		$("#embedLink").hide();
	});
	
	$("#embedLink a.close").click(function(){
		$(this).parent().hide();
		return false;
	});
	
	$("#embedLink input").click(function() {
		$(this).select();
	});
	
	$(".video").hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	});
	
	$(".thumbnailAndTime").click(function() {
		window.location.href = $(this).parent().attr("href");
	});
});


