$(document).ready(function(){
	$('.menu.dynamic ul li').hover(function(){
		$(this).children('ul').show();
	}, function(){
		$(this).children('ul').hide();
	});
});
function mt(name,domain,subject,body){
	location.href = "mailto:"+name+"@"+domain+'?subject='+subject+'&body='+body;
}
