
$(document).ready(function(){
	
	//Google Tracking Rabattfinder top:
	$("#rf-form-top").submit(function(){
		var sKeyText = $("#rf_key").val().trim();
		if(!sKeyText) sKeyText = "empty";
		pageTracker._trackEvent("Rabattfinder", "Top.Search.Fonds", sKeyText);
	});
	
});
	
//Index Blend on Start:
var mouseMoved = false;

$(document).mousemove(function(){
	mouseMoved = true;
	blendInPage();
	mouseMoved = false;
});

$(document).ready(function(){
	if(mouseMoved) blendInPage();
});

function blendInPage(){
	$("#head_blend").fadeOut("slow");
	$("#left_blend").fadeOut("slow");
	$("#right_blend").fadeOut("slow");
	$("#footer_blend").fadeOut("slow");
	
}

//Blend in menu after x seconds:
setTimeout ( "blendInPage()", 5000 );
