$(document).ready(function(){
		
	$(".navigation .container ul li").hover(
		function(){
			$(this).children("ul").css("display","block");
		},
		function(){
			$(this).children("ul").css("display","none");
		}
	);
	
	$(".green-headline h2").sifr({ 
		font: 'interstateregular.swf',
		path: '/site/flash',
		textTransform: 'uppercase',
		width: '250'
		});
	
	$(".blue-headline h2").sifr({ 
		font: 'interstateregular.swf',
		path: '/site/flash',
		textTransform: 'uppercase',
		width: '250'
		});
	
	$(".grey-headline h2").sifr({ 
		font: 'interstateregular.swf',
		path: '/site/flash',
		textTransform: 'uppercase',
		width: '250'
		});
	
	$("#mainpicture-content").children("h1").sifr({ 
		font: 'interstateregular.swf',
		path: '/site/flash',
		textTransform: 'uppercase'
		/*
		sEmColor:"#337dbc",
		sStrongColor:"#9dc703"
		*/
		});

		/*
		if(typeof sIFR == "function"){
			sIFR.replaceElement("#mainpicture-content h1", named({sFlashSrc: "/site/flash/interstateregular.swf", sColor: "#333", sEmColor:"#337dbc", sStrongColor:"#9dc703", sCase: "upper"}));
		};
		*/
});