$(document).ready(function() {
	$("#top_menu a").each(function() {
		var id = this.id.substr(4);
		var img = new Image();
		img.src = "<?=URL_ROOT?>/css/"+id+"-hover.jpg";
	});
	rescue_emails();
	Shadowbox.init();
});

function rescue_emails()
{
	$("a.mule").each(function() {
		var emailtext = new String(this.innerHTML);
		emailtext = emailtext.replace(/(.+) _AT_ (.+) _DOT_ (.+)/, "$1@$2.$3")
		this.href="mailto:" + emailtext;
		this.innerHTML = emailtext;
	})
}