$(document).ready
(
	function()
	{
		ResetMenu();
				
		$('#menu li').click
		(
			function()
			{
				ResetMenu();
				//set new conf for selected inten
				//$(this).find('a').css('padding-left','10px');
				$(this).find('ul').fadeIn('slow');				
				//set content new min-height;
				var nexContent = $('#menu').height() + 13;
				
				$('#content').css('min-height',  nexContent +'px' );
			}
		);
	}
);

//reset menu to default conf
function ResetMenu()
{
	//$('#menu li a').css('padding-left','0');
	$('#menu li').find("ul").css('display','none');	
}

function LoadFlash(flash,width,height,alt,wmode)
{
	if(!wmode)
	{
		wmode = 'window'
	}
	if(alt)
	{
		alt = '<div>' + alt + '</div>';
	}
	else
	{
		alt = '<h4>Content on this page requires a newer version of Adobe Flash Player.</h4><p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>';
	}
	
	var script ='<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + width + '" height="' + height + '"><param name="movie" value="' + flash + '"><param name="quality" value="high"><param name="wmode" value="' + wmode + '"><param name="swfversion" value="6.0.65.0"><param name="expressinstall" value="Scripts/expressInstall.swf"><!--[if !IE]>--><object type="application/x-shockwave-flash" data="' + flash + '" width="' + width + '" height="' + height + '"><!--<![endif]--><param name="quality" value="high"><param name="wmode" value="' + wmode + '"><param name="swfversion" value="6.0.65.0"><param name="expressinstall" value="Scripts/expressInstall.swf"> ' + alt + '<!--[if !IE]>--></object><!--<![endif]--></object>';
	
	return document.write(script);
}
