var futura = {src: FONT_LOCATION+'futura.swf'};

sIFR.activate(futura);

sIFR.replace(futura, {
	selector: 'h1.heading',
	css: [
		'.sIFR-root { font-size: 30px; color: #FF0000; }',
		'strong { font-style: bold; }',
		'em { font-style: normal; color: #FFFFFF; }'
		],
	wmode: 'transparent'
});

sIFR.replace(futura, {
	selector: 'h2.heading',
	css: [
		'.sIFR-root { font-size: 24px; color: #FFFFFF; }',
		'strong { font-style: bold; }',
		'em { font-style: normal; color: #FF0000; }'
		],
	wmode: 'transparent'
});

sIFR.replace(futura, {
	selector: 'h3.heading',
	css: [
		'.sIFR-root { font-size: 18px; color: #ba0925; }',
		'strong { font-style: bold; }',
		'em { font-style: normal; color: #FFFFFF; }'
		],
	wmode: 'transparent'
});

sIFR.replace(futura, {
	selector: 'h1.laune',
	css: [
		'.sIFR-root { font-size: 25px; color: #FF0000; text-align: center; }',
		'strong { font-style: bold; }',
		'em { font-style: normal; color: #FFFFFF; }'
		],
	wmode: 'transparent'
});

sIFR.replace(futura, {
	selector: 'h2.laune',
	css: [
		'.sIFR-root { font-size: 15px; color: #FF0000; text-align: center; }',
		'a { color: #666666; text-decoration: none; }',
		'a:hover { color: #FF0000; }'
		],
	wmode: 'transparent'
});

sIFR.replace(futura, {
	selector: 'h1.actu',
	css: [
		'.sIFR-root { font-size: 14px; color: #FF0000; text-align: center; }',
		'a { color: #666666; text-decoration: none; }',
		'a:hover { color: #FF0000; }'
		],
	wmode: 'transparent'
});

sIFR.replace(futura, {
	selector: 'h2.actu',
	css: [
		'.sIFR-root { font-size: 13px; color: #999999; text-align: center; }',
		'a { color: #666666; text-decoration: none; }',
		'a:hover { color: #FF0000; }'
		],
	wmode: 'transparent'
});

sIFR.replace(futura, {
	selector: '.catbloc',
	css: [
		'.sIFR-root { font-size: 15px; color: #555555; text-align: center; text-transform: uppercase; }',
		'a { color: #666666; text-decoration: none; }',
		'a:hover { color: #FF0000; }'
		],
	wmode: 'transparent'
});

function GoogleMaps(lat,lng) {
    Shadowbox.open({
        player: "html",
        title: "Plan d'Accès Google Maps",
        content: "",
        height: 500,
        width: 750,
        options: {
            onFinish: function(item){
                if(GBrowserIsCompatible()){
                    var map = new GMap2(document.getElementById("shadowbox_content"));
                    map.setCenter(new GLatLng(lat, lng), 13);
                    var point = new GLatLng(lat,lng);
                    map.addOverlay(new GMarker(point));     
                    map.addControl(new GSmallMapControl());
                    map.addControl(new GMapTypeControl());
                }
            }
        }
    });
}