$j(document).ready(function(){
	$j("#background").show().width($j(window).width()).height($j(window).height());
	$j("#theFlashWrapper").show();
	loadFlashPlayer();
});

function loadFlashPlayer(){
	var theParameters = { 	
			allowfullscreen:"true",
			wmode : "transparent"
					};
	
	swfobject.embedSWF("/flash/campaigns/jade/LipstickPlayer_scale.swf", "theFlashHolder", "100%", "100%", "9.0.0", "","", theParameters);
	
	
}

function closeFlashPlayer(){
	$j("#background").hide();
	$j("#theFlashWrapper").hide();
	swfobject.removeSWF("theFlashHolder");
}

