
		
		
	
		//-----------------------------------------------------------------------
		//-----THIS IS THE JAVA SCRIPT THAT SENDS ALL THE VARS TO THE FLASH FILE
		//-----------------------------------------------------------------------
		
		//first we set the base flash file, the name, it's width, height, the player vertion, and the background color
		//DO NOT CHANGE THIS PART ONLY BELOW
		var so = new SWFObject("base_flash_banner_new.swf", "sotester", "760", "234", "8", "#FFFFFF");
		so.addParam("wmode", "transparent");
		
		//-----------------------------------------------------------------------
		//-----------------------------------------------------------------------
		//-----EDIT BELOW HERE FOR ALL FLASH SETTINGS
		//-----------------------------------------------------------------------
		//-----------------------------------------------------------------------		
		//first tell the flash movie if you are loading "banners" or "FX"
		//so.addVariable("banner_or_fx", "fx");
		so.addVariable("banner_or_fx", "banners");
		
		//tell the page how many FX file are availabe and it randomly chooses from these files
		//the files must be names as FX_#.swf to show up.
		so.addVariable("total_number_of_available_fx", 10);
		//tell the page how many image banners are availabe and it randomly chooses from these files
		//the files must be names as banner_#.swf to show up.
		so.addVariable("total_number_of_available_banners", 5);
		
		//GET THE LINKS FROM EXTERNAL FILE
		//require('../inculdes/links_list.js');
		
			
		so.addVariable("main_link_1_name", "Art");
		so.addVariable("main_link_1_url", "../art.php");
		so.addVariable("main_link_2_name", "Projects");
		so.addVariable("main_link_2_url", "../projects.php");
		so.addVariable("main_link_3_name", "Show-n-Talk");	
		so.addVariable("main_link_3_url", "../events.php");
		so.addVariable("main_link_4_name", "Texts");
		so.addVariable("main_link_4_url", "../text.php");		
		so.addVariable("main_link_5_name", "CV");
		so.addVariable("main_link_5_url", "../cv.php");
		so.addVariable("main_link_6_name", "Fun");
		so.addVariable("main_link_6_url", "../fun.php");
		so.addVariable("main_link_7_name", "Contact");
		so.addVariable("main_link_7_url", "../contact.php");


		//this is just a closing tag
		so.write("flashcontent");

