/*

var neoBold = {
  src: 'sIFR/neoBold_sIFR.swf'
};

sIFR.activate(neoBold);

sIFR.replace(neoBold, {
  selector: 'h1',
  sColor: '#CCCCCC',
  sBgColor: '#CACACA'
});

*/
// this is the script you to specify 
// which elements are replaced and how


sIFR.replaceElement(named({
// CSS selector you use to select the elements you want to replace
	sSelector:"#imgman h1",
// location of the Flash movie, you can use relative or absolute paths
	sFlashSrc:"sIFR/neoSansPro_Light.swf",
// text color
	sColor:"#666666",
// text color for links
	sLinksColour:"",
// text color for hovered links
	sHoverColor:"",
// text background color
	sBgColor:"#000066",
	
// if you use padding in the elements you want to replace, 
// you have to set the amount of padding here
// nPaddingTop, nPaddingRight, nPaddingBottom, nPaddingLeft:

// extra variables you want to pass on to the Flash file
// variables are seperated by &
//    sFlashVars: 
//    textalign=center: // center text horizontally
//    offsetLeft=5: // pushes text 5px to the right
//    offsetTop=5: // pushes text 5px down.
//    underline=true: // adds underline to links on hover

// transforms text case: upper for upper-case, lower for lower-case
	sCase:"",
// set this argument to transparent if you want to use a transparent background
	sWmode:"transparent"
/* 
NOTE: Mozilla browsers can have some difficulty 
rendering Flash movies with the wmode set. 
Transparency is not supported in Opera 7.x, 
Safari < 1.2 & Flash 6, in Linux, and in 
very old (pre 1.0) Mozilla versions. 
In these browsers sIFR will fall back to 
the background color instead of using transparency
*/
// NO COMMA ON LAST ELEMENT DUE TO IE BUG	
}));

// simpler code version
sIFR.replaceElement(
					"#col01 h1", 
					"sIFR/neoSansPro_Light.swf", 
					named(
						  {
							sColor:"#6c6c6c", 
							sWmode:"transparent"
						   }
						 )
					);

sIFR.replaceElement(
					"#col01 h2", 
					"sIFR/neoSansPro_Light.swf", 
					named(
						  {
							sColor:"#6c6c6c", 
							sWmode:"transparent"
						   }
						 )
					);


