function VisionJS(){
	
	this.bg_color = "#000000";
	this.site_title = "Dead Pixel Studio";
	
	this.swf_path = "deadpixel.swf";
	this.swf_width = "100%";
	this.swf_height = "100%";
	this.swf_minwidth = "955";
	this.swf_minheight = "650";
	this.swf_version = "9.0.125";
	this.swf_id = "deadpixel";
		
	this.flashvars =	{
						};
	
	this.params =	{
					swliveconnect:"true",
					allowscriptaccess:"always",
					allowfullscreen:"true",
					wmode:"opaque"
					};
					
	this.attributes =	{
						id:this.swf_id,
						name:this.swf_id
						};
	
	//-----------------------------------------------
	
	this.init = function(){
		document.title = this.site_title;
		document.body.style.backgroundColor = this.bg_color;
		
		var container = document.getElementById("flashcontent");
		container.style.width = this.swf_width;
		container.style.height = this.swf_height;
	};
	
};
					
var vision = new VisionJS();
vision.init();