// JavaScript Document
var hn = {
	src: 'site/swf/helveticaneue.swf'
};

//sIFR.debugMode = true;
// sIFR.domains = ['novemberborn.net'] // Don't check for domains in this demo
//sIFR.fitExactly = true;
sIFR.prefetch(hn);
sIFR.activate();

// standaard h1
sIFR.replace(hn, { 
	selector: 'h1.startpagina',
	tuneHeight: -3,
	wmode: 'transparent',
	css: {
		'.sIFR-root': { 'color': '#222222'}	
	}
});

// h1 voor content
sIFR.replace(hn, { 
	selector: 'h1.content',
	tuneHeight: -3,
	wmode: 'transparent',
	css: {
		'.sIFR-root': { 'color': '#FFFFFF'}	
	}
})

// standaard h2
sIFR.replace(hn, { 
	selector: 'h2',
	tuneHeight: -6,
	wmode: 'transparent',
	css: {
		'.sIFR-root': { 'color': '#444444'}	
	}
});

// h3 op startpagina
sIFR.replace(hn, { 
	selector: 'h3.snelnaar',
	tuneHeight: -3,
	selectable: false,
	wmode: 'transparent',
	css: {
		'.sIFR-root': { 'color': '#FFFFFF'},
      	'a' : { 'text-decoration': 'none'},
      	'a:link' : { 'color': '#FFFFFF'},
      	'a:hover' : { 'color': '#FFFFFF'}
	}
});
