$(document).ready(function(){
	DuallBlurAnchors();
	DuallHomeLink();
//	DuallFixHeight();
});


function DuallBlurAnchors(){ 
	if(document.getElementsByTagName) { 
		var a = document.getElementsByTagName("a"); 
		for(var i = 0; i < a.length; i++){ 
			a[i].onfocus = function(){this.blur();}; 
		} 
	} 
};

function DuallHomeLink(){
	$("#navigatie").click(function(){
       location.href= "/studio.html";
		});
	$("#navigatie").mouseover(function () {
		$(this).css("cursor","pointer");
		});
}

function DuallnoSpam(user,domain){
	locationstring = "mailto:" + user + "@" + domain + ".be";
	window.location = locationstring;
};

/*function DuallFixHeight(user,domain){
	var newHeight = $(window).height();
	$(.wrapper).css("height", newHeight);
	alert('Duall Fixed the Height');
};*/


