// Default 3.0.0
function email_output(user,domain,tld,text,get,tag){email=user+'@'+domain+'.'+tld;if(!text)text=email;if(tag)tag=' '+tag;document.write('<a href="mailto:'+email+get+'"'+tag+'>'+text+'</a>');}
function window_open(url,name,features){popup=window.open(url,name,features);popup.focus();}

// Custom
$(document).ready(function(){
	$(".boxpointer").css("cursor", "pointer").click(function(event){
		window.location.href = $(this).find("a").attr("href");
		event.preventDefault();
	});
	$(".lightbox").lightbox();
});
