// JavaScript Document

//Embeds video trailer

function init()
{
	// starts custom debug window
	//startDebug();
	
	// inserts embed video html provided by host vimeo.com
	document.getElementById("video").innerHTML = '<object width="525" height="296" style="z-index:inherit\;">' + '<param name="allowfullscreen" value="true" />' + '<param name="allowscriptaccess" value="always" />' + '<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3568189&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=91BA20&amp;fullscreen=1" />' + '<embed src="http://vimeo.com/moogaloop.swf?clip_id=3568189&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=91BA20&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="524" height="295">' + '</embed></object>' + '<br />' + '<br />';
	
	// inserts embed video html provided by host vimeo.com
	document.getElementById("video2").innerHTML = '<object width="525" height="296">' + '<param name="allowfullscreen" value="true" />' + '<param name="allowscriptaccess" value="always" />' + '<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4635070&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=91BA20&amp;fullscreen=1" />' + '<embed src="http://vimeo.com/moogaloop.swf?clip_id=4635070&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=91BA20&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="524" height="295">' + '</embed></object>' + '<br />' + '<br />';
};

/* code that connects the init function above 
to an event that occurs after the page has loaded */
window.onload = init;