function email(username,domain,ext){var atsign = "&#64;";var address_visual = username + atsign + domain + ext;var addr = username + atsign + domain + ext;document.write("<" + "a" + " " + "href=" + "mail" + "to:" + addr + ">" + address_visual +  "<\/a>");}
$(document).ready(function(){	
	$('a[rel="ext"]').attr({target: "_blank"});

	$('#btn_about').click(function(){
		window.location.href = '/about/';
	});
	$('#btn_contact').click(function(){
		window.location.href = '/contact/';
	});
	$('#btn_knowledgebase').click(function(){
		window.location.href = '/knowledge-base/';
	});
	$('#btn_signin').click(function(){
		window.location.href = '/clients/';
	});
});
