$(function()
{
	// menu hover
	$("#menu>li").hover(
		function() { $(this).addClass("hover"); }, //$(">ul", this).hide().slideDown(250).css("opacity", 0.98); },
		function() { $(this).removeClass("hover"); }
	);
	
	// referenties klikbaar
	$("#referenties>li, #overzicht>li").click(function()	{
		window.location = $("a:first", this).attr("href");
	});
	
	// flash bij slogan
	var so = new SWFObject(submap + "/fla/slogan.swf", "flash", "464", "229", "6", "#F4C300"); 
	so.addVariable("datamap", submap + "/fla/slogan");
	so.addVariable("dataxml", "images.xml");
	so.addVariable("slogan_ani", 'ja');	// ja of nee
	so.addParam("menu", false);
	so.addParam("wmode", "opaque");
	so.write( $("#header .slogan")[0] ); 	
	
	// sifr
	sIFR.replaceElement(named({sSelector:"#header h2", sFlashSrc:submap + "/fla/titel.swf", sColor:"#000000", sBgColor:"#F4C300", sWmode: "transparent"}));
	sIFR.replaceElement(named({sSelector:"#content h2", sFlashSrc:submap + "/fla/titel.swf", sColor:"#000000", sBgColor:"#FFFFFF"}));
});