$(document).ready(function() {
	//Place Flash
	$('#flash').flashembed({
	    src: '/swf/home.swf',
	    width: "100%",
	    height: "750px",
	    wmode: "transparent",
		  version: [10, 0],
	    onFail: function() {$("#flash").addClass("home");}
	});
	
	//Loading Videos
	for (var i=1; i < 4; i++) {
		$("#video_0"+i).flashembed({
			src: "http://blip.tv/scripts/flash/showplayer.swf?file=http://blip.tv/rss/flash/" + eval("v0"+i) + "&brandname=marksteines.com&brandlink=&backcolor=0x33261D&frontcolor=0xFFFFFF" + "&showsharebutton=false&showmorebutton=false&showguidebutton=false&smokeduration=0",
			width: "320px",
			height: "265px",
			allowscriptaccess: "always",
			allowFullScreen: "true",
			wmode: "transparent"
		});
	};
	
	//Place Header and Footer on Home Page
	$('#head').css({
		position:"absolute", top:"0px", left:"50%",marginLeft:"-333px"
	});
	
	$('#footer').css({
		position:"absolute", top:"700px", left:"50%",marginLeft:"-290px"
	});
});

function open_video(id){
	$("#video_0"+id).css("visibility", "visible");
}

function close(id){
	$("#video_0"+id).css("visibility", "hidden").html("").flashembed({
		src: "http://blip.tv/scripts/flash/showplayer.swf?file=http://blip.tv/rss/flash/" + eval("v0"+id) + "&brandname=marksteines.com&brandlink=&backcolor=0x33261D&frontcolor=0xFFFFFF" + "&showsharebutton=false&showmorebutton=false&showguidebutton=false&smokeduration=0",
		width: "320px",
		height: "265px",
		allowscriptaccess: "always",
		allowFullScreen: "true",
		wmode: "transparent"
	});
}
