var helvetica = {src: '/images/swf/helvetica.swf'};

sIFR.activate(helvetica);

// If you want, you can use multiple movies, like so:
//
//    var futura = { src: '/path/to/futura.swf' };
//    var garamond = { src '/path/to/garamond.swf' };
//    var rockwell = { src: '/path/to/rockwell.swf' };
//    
//    sIFR.activate(futura, garamond, rockwell);
//
// Remember, there must be *only one* `sIFR.activate()`!

// For the full list, see "Keyword arguments"
// under `replace(kwargs, mergeKwargs)` at 
// <http://wiki.novemberborn.net/sifr3/JavaScript+Methods>.


/////PRINT PAGE
sIFR.replace(helvetica, {
	selector: 'h2.h2GreenWhite',
	wmode: 'transparent',
	css: [ 
		'.sIFR-root{color:#ffffff; font-weight:bold; text-transform: uppercase;}', 
		'a{color:#ffffff; font-weight:bold; text-decoration:none;}',
		'a:hover{color:#ffffff;}',
		'em{font-style:italic;}', 
		'strong{font-weight:bold;}' 
	] 
});

sIFR.replace(helvetica, {
	selector: 'h2.h2Yellow',
	wmode: 'transparent',
	css: [ 
		'.sIFR-root{color:#f5b418; font-weight:bold; text-transform: uppercase;}', 
		'a{color:#f5b418; font-weight:bold; text-decoration:none;}',
		'a:hover{color:#f5b418;}',
		'em{font-style:italic;}', 
		'strong{font-weight:bold;}' 
	] 
});

sIFR.replace(helvetica, {
	selector: 'h3.h3Diensten',
	wmode: 'transparent',
	css: [ 
		'.sIFR-root{color:#414141; font-weight:bold; text-transform: uppercase;}', 
		'a{color:#414141; font-weight:bold; text-decoration:none;}',
		'a:hover{color:#414141;}',
		'em{font-style:italic;}', 
		'strong{font-weight:bold;}' 
	] 
});

sIFR.replace(helvetica, {
	selector: 'h1',
	wmode: 'transparent',
	css: [ 
		'.sIFR-root{color:#414141; font-weight:bold; text-transform: uppercase;}', 
		'a{color:#414141; font-weight:bold; text-decoration:none;}',
		'a:hover{color:#414141;}',
		'em{font-style:italic;}', 
		'strong{font-weight:bold;}' 
	] 
});

sIFR.replace(helvetica, {
	selector: 'h1.inlog',
	wmode: 'transparent',
	css: [ 
		'.sIFR-root{color:#8FB63E; font-weight:bold; text-transform: uppercase;}', 
		'a{color:#8FB63E; font-weight:bold; text-decoration:none;}',
		'a:hover{color:#414141;}',
		'em{font-style:italic;}', 
		'strong{font-weight:bold;}' 
	] 
});

sIFR.replace(helvetica, {
	selector: 'h1.welkom',
	wmode: 'transparent',
	css: [ 
		'.sIFR-root{color:#414141; font-size:40px; font-weight:bold; text-transform: uppercase;}', 
		'a{color:#414141; font-weight:bold; text-decoration:none;}',
		'a:hover{color:#414141;}',
		'em{font-style:italic;}', 
		'strong{font-weight:bold;}' 
	] 
});


