/* functie om hele blokken klikbaar te maken, en hover toevoegen */
$.fn.hoverClick = function()
{
	this.each(function()
	{
		$(this).hover(
			function() { $(this).addClass("hover").css("cursor", "pointer"); },
			function() { $(this).removeClass("hover").css("cursor", "pointer"); }
		);
		
		$(this).attr("title", $("a:first", this).attr("title"));
		
		$(this).click(function(){
			window.location = $("a:first", this).attr("href");
		});
	});
	
	return this;
};


$(function() {

	$("#menu li").hover(function()
	{
		$(this).addClass("hover");
	},
	function()
	{
		$(this).removeClass("hover");
	});
	
	
	///////////////////////////////
	// Formulier focus op velden //
	///////////////////////////////
	$("#content input, #content textarea").focus(function() {
		$(this).addClass("veldfocus");
	});
	$("#content input, #content textarea").blur(function() {
		$(this).removeClass("veldfocus");
	});
	
});


function maak_sifr()
{
	sIFR.replaceElement(named({ sSelector:"h1", sFlashSrc: submap+"fla/frutiger.swf", sColor:"#7a4d00", sBgColor:"#FEF4EB",  sWmode:"transparent" }));	
}

