/*
	JavaScript Document
	Initiates all scripts on the home page.
*/
onload = function(){
	killFramesID		= setTimeout("killFrames();",5);
	screenSizeID		= setTimeout("screenSize();",5);
	portfolioID			= setTimeout("portfolio();",10);
}
/*
	Embed intro Flash
*/
function portfolio(){
	if (document.getElementById){
		
		// Get Flash DIV
		flashObj				= document.getElementById("flash");
		
		// Embed Portfolio Flash
		if (flashObj.innerHTML != ""){
			FLV					= flashObj.innerHTML;
			flashObj.innerHTML	= "";
			embedFlash('allowfullscreen=true','data=Media/SWF/videoPlayer.swf','flashvars=videoFLV:../FLV/Portfolio/' + FLV + ';nextPage=;','height=100%','loop=false','parent=flash','play=true','quality=best','width=100%','wmode=transparent');
		}
		
		// Get portfolio links
		contentObj				= document.getElementById("content");
		aObj					= contentObj.getElementsByTagName("a");
		
		// Set commercial link
		aObj[0].onclick			= function(){
			FLV					= this.href.replace(/http:\/\/(www\.)?kimberlystricker\.com\//gi,"");
			flashObj			= document.getElementById("flash");
			flashObj.innerHTML	= "";
			embedFlash('allowfullscreen=true','data=Media/SWF/videoPlayer.swf','flashvars=videoFLV:../FLV/Commercial/' + FLV + ';nextPage=;','height=100%','loop=false','parent=flash','play=true','quality=best','width=100%','wmode=transparent');
			return false;
		}
		
		// Set video link
		aObj[1].onclick			= function(){
			FLV					= this.href.replace(/http:\/\/(www\.)?kimberlystricker\.com\//gi,"");
			flashObj			= document.getElementById("flash");
			flashObj.innerHTML	= "";
			embedFlash('allowfullscreen=true','data=Media/SWF/videoPlayer.swf','flashvars=videoFLV:../FLV/Video/' + FLV + ';nextPage=;','height=100%','loop=false','parent=flash','play=true','quality=best','width=100%','wmode=transparent');
			return false;
		}
		
	} else {
		// Legacy Browsers
		return false;
	}
}
