
function flvEnded()
{
	$("#in-place").remove();
}

$(document).ready(function(){

	var rollover = new Image(); rollover.src = "/images/kream-play-active.png";

	$("#slideshow a").hover(function(event) {
		$(this).find("img").attr("src", "/images/kream-play-active.png");
	}, function(event) {
		$(this).find("img").attr("src", "/images/kream-play.png");
	});

	$("#slideshow a").click(function(event) {
		event.preventDefault();
		$("body").append("<div id='in-place'><div id='in-place-inner'></div></div>");
		$("#in-place").css({
			position: "absolute",
			top: "" + $(this).offset().top + "px",
			left: "" + $(this).offset().left + "px",
			width: "" + $(this).width() + "px",
			height: "" + $(this).height() + "px"
		});
		//swfobject.embedSWF(this.href, "in-place-inner", 440, 287, "9.0.0", false, false, {wmode: "transparent"});
		swfobject.embedSWF(this.href, "in-place-inner", 440, 287, "9.0.0");
		return false;
	});

});
