// email hider

var add = "enquiries@gallerina.co.uk";
var stat = '<a onmouseover="window.status=\' ' + 'Click here to send an email\'; return true" onmouseout="window.status=document.title" href="';
	  
function  emailTo(){
output = stat + "mailto:" + add + '">' + "click to send an email" + '</a>';
return output;
}

document.write(emailTo());


//  end

