/**
 * javascript for view/contact/index.php
 *
 * @author 	Peter Funke
 * @since 	Septembre 9, 2009
 */

/* ************************************* */

$(document).ready(function() 
{
	extension = "premiumbeat.zendesk.com"
	$(".embt").click(function(){
		document.location = "mailto:"+$(this).attr("rel")+'@'+extension;
		return false;
	})
	
}); 

