window.alert=function(msg){
  $.jGrowl(msg, { life: 10000 });
}

var _host = document.location.host;
var cur_url = document.location.href.substring(document.location.href.indexOf(_host)+_host.length).toLowerCase();

$(document).ready(function () {

  $("#mailer_link").click(function () {
    $(this).hide();
    $("#mailer_form").fadeIn("normal");
  });

  $("#navigation li a[href='" + cur_url + "']").addClass("selected");
});
