$(document).ready(function(){

	// replace product image with flash version
	if ($("#slideshow").length)
	{
		$("#slideshow img").css("visibility","hidden");
		swfobject.embedSWF("swf/slideshow_simple.swf", "slideshow", "448", "674", "8.0.0", "swf/expressInstall.swf",{ xml_url:"xml_slideshow.aspx%3fmenu=" + qs.menu + "%26id=" + qs.id},{},{id:"slideshow",name:"slideshow"});
	}
 
	// replace h1 tags with flash version of h1 -- with profile font
	$("h1").each(function(i){
		var width = $(this).width();
		var height = $(this).height();
		var text = $(this).text();
		text = text.replace(/"/g,"'");
		text = text.replace("&","%26");
		
		$(this).css("visibility","hidden");
		$(this).css("clear","both");

		swfobject.embedSWF("swf/croquette.swf", this.id, "100%", height, "8.0.0", "",{ sTitle: text, sColor:"0x333333", sSize:28, nX:-3, nY:0, nWidth:width, nHeight:height },{ wmode:"transparent" },{id: "h1-"+i,name: "h1-"+i });

	});

});


