function flash (w, h, fla, id) {
	var flashHTML = '<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="'+ w +'" height="'+ h +'">'
					+ '<param name="movie" value="'+ fla +'" />'
					+ '<param name="quality" value="high" />'
					+ '<param name="allowFullScreen" value="false" />'
					+ '<param name="scale" value="noscale" />'
					+ '<param name="wmode" value="transparent" />'
					+ '<embed src="'+ fla +'" width="'+ w +'" height="'+ h +'" quality="high" '
					+ 'pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" allowfullscreen="false" scale="noscale">'
					+ '</embed></object>';

	$(id).html(flashHTML);		
			
}

$(document).ready(function() {
	
	/*hover text on home page
	//hide all 2.5 sec afterload
	setTimeout(function() {
		$('#over-host').animate({height:'toggle', opacity:'toggle'},'slow');
		$('#over-buy').animate({height:'0%', opacity:'0%'},'slow');
		$('#over-trailer').animate({height:'0%', opacity:'0%'},'slow');
		$('#over-involved').animate({height:'0%', opacity:'0%'},'slow');
		$('#over-booklet').animate({width:'0%', opacity:'0%'},'slow');
		$('#over-screening').animate({height:'0%', opacity:'0%'},'slow');
	}, 2500);

	//bind each to a mouseover
	$('#host').hover(function(){
		$('#over-host').animate({height:'toogle', opacity:'toggle'},'fast')});/*
	$('#buy').mouseenter(function(){
		$('#over-buy').animate({height:'100%', opacity:'100%'},'slow')
	}).mouseout(function(){
		$('#over-buy').animate({height:'0%', opacity:'0%'},'slow');
	});
	$('#trailer').mouseenter(function(){
		$('#over-trailer').animate({height:'100%', opacity:'100%'},'slow')
	}).mouseout(function(){
		$('#over-trailer').animate({height:'0%', opacity:'0%'},'slow');
	});
	$('#involved').mouseenter(function(){
		$('#over-involved').animate({height:'100%', opacity:'100%'},'slow')
	}).mouseout(function(){
		$('#over-involved').animate({height:'0%', opacity:'0%'},'slow');
	});
	$('#booklet').hover(function(){$('#over-booklet').mouseenter(function(){
		$('#over-booklet').animate({height:'100%', opacity:'100%'},'slow')
	}).mouseout(function(){
		$('#over-booklet').animate({height:'0%', opacity:'0%'},'slow');
	});
	$('#screen').hover(function(){$('#over-screening').mouseenter(function(){
		$('#over-screening').animate({height:'100%', opacity:'100%'},'slow')
	}).mouseout(function(){
		$('#over-screening').animate({height:'0%', opacity:'0%'},'slow');
	});	*/
	
})