/* Javascript file to add flash using SWFObject 2.1 
   SITENAME	
   Explosive Image
   Coder/Programmer: NAME
   Date: DATE

   Old Version Website:  http://blog.deconcept.com/swfobject/
   New Version Website: http://code.google.com/p/swfobject/
   
   DOCUMENTATION HERE: http://code.google.com/p/swfobject/wiki/documentation
   API DOCUMENTATION HERE: http://code.google.com/p/swfobject/wiki/api
   
   
   --------------IMPLEMENTATION METHOD AND SYNTAXIS ---------------------
   
   swfobject.embedSWF(swfUrl, id, width, height, version, expressInstallSwfurl, flashvars, params, attributes) has five required and four optional arguments:

   1. swfUrl (String, required) specifies the URL of your SWF
   2. id (String, required) specifies the id of the HTML element (containing your alternative content) you would like to have replaced by your Flash content
   3. width (String, required) specifies the width of your SWF
   4. height (String, required) specifies the height of your SWF
   5. version (String, required) specifies the Flash player version your SWF is published for (format is: "major.minor.release")
   6. expressInstallSwfurl (String, optional) specifies the URL of your express install SWF and activates Adobe express install [ http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75 ]. Please note that express install will only fire once (the first time that it is invoked), that it is only supported by Flash Player 6.0.65 or higher on Win or Mac platforms, and that it requires a minimal SWF size of 310x137px.
   7. flashvars (Object, optional) specifies your flashvars with name:value pairs
   8. params (Object, optional) specifies your nested object element params with name:value pairs
   9. attributes (Object, optional) specifies your object's attributes with name:value pairs 
   
   
   -------------- PARAMETERS ---------------------  
   
	* play
    * loop
    * menu
    * quality
    * scale
    * salign
    * wmode
    * bgcolor
    * base
    * swliveconnect
    * flashvars
    * devicefont [ http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_13331 ]
    * allowscriptaccess [ http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16494 ] and [ http://www.adobe.com/go/kb402975 ]
    * seamlesstabbing [ http://www.adobe.com/support/documentation/en/flashplayer/7/releasenotes.html ]
    * allowfullscreen [ http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html ]
    * allownetworking [ http://livedocs.adobe.com/flash/9.0/main/00001079.html ] 
	
	******************** EXAMPLES **********************
	    
		TO USE SEVERAL VALUES
		var flashvars = {
			  variable1: "value1",
			  variable2: "value2",                         
			  variable3: "value3"
			};

        TO GET THE VARIABLES DIRECTLY FROM THE URL
		flashvars.foo = swfobject.getQueryParamValue("foo");
		
		
		      *** IMPORTANT****
       id of the div and the title needs to be the same.
*/


            var flashvars = {};
			
			var params = {
				
				wmode : "transparent"
				
				};
				
			var attributes = {
				
				id : "flash_logo"
				
				};
			

			swfobject.embedSWF("flash/header.swf", "flash_logo", "933px", "88px", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
	