var showTeaser = function(t) {
	jQuery("#teasers .teaser").css("display", "none");
	jQuery("#teaser"+t).css("display", "block");
}

jQuery(function($) {
	$("#teasers .placeholder").each(
		function() {
			$(this).siblings("div.embedcode").css("display", "none");
		}
	).click(function() {
		var div = $(this).siblings("div.embedcode");
		$(this).css("display", "none");
		$(div).css("display", "block");
	}).css("cursor", "pointer");
});

