function ShowFlash ( id, width, height )
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + width + '" height="' + height + '" title="menu">');
	document.write('<param name="movie" value="/swf/' + id + '.swf"/>');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="/swf/' + id + '.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>');
	document.write('</object>');
}

function toggleImage ( obj, imgName, imgAction )
{
	obj.src = "/img/" + imgName + "_" + imgAction + ".gif";
}

function ReplaceFlash ( layerId, id, width, height )
{
	var text;
	
	text = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + width + '" height="' + height + '" title="menu">';
	text = text + '<param name="movie" value="/swf/' + id + '.swf"/>';
	text = text + '<param name="quality" value="high" />';
	text = text + '<embed src="/swf/' + id + '.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>';
	text = text + '</object>';
	
	document.getElementById( layerId ).innerHTML = text;
}

function ShowParty ( partyName )
{
	ReplaceFlash( "partyLayer", partyName, '510', '360' );

	document.getElementById( "monday-text" ).style.display = "none";
	document.getElementById( "tuesday-text" ).style.display = "none";
	document.getElementById( "weekend-text" ).style.display = "none";
	document.getElementById( "party-text" ).style.display = "none";

	document.getElementById( partyName + "-text" ).style.display = "block";
}