var helvetica = {
  src: 'http://www.figure8.be/css/sifr/swf/helvetica.swf'
};


// sIFR.domains = ['figure8.be'] // Don't check for domains, DO NOT USE! - is acting weird

sIFR.useStyleCheck = true;
sIFR.activate(helvetica);

sIFR.replace(helvetica, {
  selector: '#center #header #work-details #work-info h1',
	wmode: 'transparent',
	forceWidth: true,
	tuneWidth: 10, /* 10px is the min value for IE6, see css for extra fine-tuning */
	fitExactly: true
  ,css: {
    '.sIFR-root': { 'color': '#FFFFFF' , 'letter-spacing': '0'}
  }
});

sIFR.replace(helvetica, {
  selector: '#center #header #work-details #work-info p',
	wmode: 'transparent',
	fitExactly: true
  ,css: {
    '.sIFR-root': { 'color': '#7e7e7e', 'font-size':'14px'},
	'a': 				{ 'color': '#ee8e26' },
	'a:link': 			{ 'color': '#ee8e26', 'text-decoration':'none' },
	'a:hover': 			{ 'color': '#ee8e26' }
  }
});

/*
Only the H1 with 'contact' is using this
*/

sIFR.replace(helvetica, {
  selector: '#center #content #content-middle #right h1',
	wmode: 'transparent',
	fitExactly: true
  ,css: {
    '.sIFR-root': { 'color': '#9b9b9b', 'font-size':'20px'}
  }
});

/*
Used for the subnavigation: assignments, casses, all, ...
Works fine, not tested in IE on windows, yet
#active is not directly applyable in this case (tested!)
*/

/*
sIFR.replace(helvetica, {
	selector: '#center #content #content-header ul li',
	wmode: 'transparent',
	forceWidth: true,
	fitExactly: true,
	tuneWidth: 4,
	css: {
	'.sIFR-root': 		{ 'color': '#999999', 'font-size':'14px' },
	'a': 				{ 'color': '#999999' },
	'a:link': 			{ 'color': '#999999', 'text-decoration':'none' },
	'a:hover': 			{ 'color': '#ee8e26' }
	}
});
*/


/*
This one is acting weird in IE6
Used and tested in every combination
DO NOT USE!
note: on smaller font sizes its behavior is different
*/

/*
sIFR.replace(helvetica, {
  selector: '#center #content #content-middle .item h1',
	fitExactly: true,
	wmode: 'transparent',
	forceTextTransform:true,
	tuneWidth:6,
	tuneHeight:-5,
	offsetTop: 0
  ,css: {
    '.sIFR-root': { 'color': '#9b9b9b', 'font-size':'16px'}
  }
});
*/