$(document).ready(function(){

$('.email').defuscate();

$("#primNav li").hover(
function(){
	$(this).next().children().addClass("next");
	$(this).prev().children().addClass("next");
},
function(){
	$(this).next().children().removeClass("next");
	$(this).prev().children().removeClass("next");
});

$("div#wildebeest a").hover(
function(){
$("#overlay").animate({
height:"212px"
},"slow");
},
function(){
});

$("#overlay").hover(
function(){
},
function(){
$(this).animate({
height:"0px"
},"slow");
});

$("#overlay").click(
function(){
	window.location.href = "http://www.saatchishul.org/about";
});

});
