function mt(name,domain,subject,body) {
	location.href = String.fromCharCode(110-1,90+7,110-5,100+8,100+16,120-9,60-2) + name + String.fromCharCode(70-6) + domain +  '?subject=' + subject + '&body=' + body;
}

function subnav_mouseover(div_id, action){
	divobj = document.getElementById(div_id);
	if(action=="over"){
		//setAttribute("class", class_name)
		divobj.style.backgroundImage = "none";
	}
	else{
		class_name = "top" + div_id;
		divobj.setAttribute("class", class_name);
	}
}

$.fn.google_tracking = function(){
	go_action = $(this).attr("title");
	go_url = $(this).attr("href");
	go_rel = $(this).attr("rel");
	if(go_rel == ""){go_rel = "Outbound Links";}
	if(typeof _gaq != "undefined"){
		_gaq.push(['_trackEvent', go_rel, go_action, go_url]);
	}
	if($(this).attr("target") != "_blank"){
		location.href = go_url;
	}
}


$(document).ready(function() {

	$("a.track").click(function(){
		$(this).google_tracking();
		
		if($(this).attr("target") != "_blank"){
			return false;
		}

	});
	
});
