function emailMe(user,domain){
	emailaddress = "mailto:" + user + "@" + domain;
	window.location = emailaddress;
}
function goHere(elID){
	$('html,body').animate({scrollTop: $('#'+elID).offset().top}, 400);
}
$(function(){
	$('#hdrNav a')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		var $link = $(this);
		$(this).stop().animate(
			{backgroundPosition:"(0 -73px)"}, 
			{duration:250})
		$link.find('span').stop().animate({'top':'3px'},'fast').animate({'top':'0'},'fast').addClass('over');
		})
	.mouseout(function(){
		var $link = $(this);
		$(this).stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:350})
		$link.find('span').stop().removeClass('over').css('padding-top','28px');
		});
	$('a#getDir').click(function(e){
		e.preventDefault();
		$('div#theDirections').fadeIn();
		$('html,body').animate({scrollTop: $('.hdrImg').offset().top}, 300);
	});
	$('a#closeDir').click(function(e){
		e.preventDefault();
		$('div#theDirections').fadeOut();
	});
	$('a.goTop').click(function(){
		$('html,body').animate({scrollTop: $('.hdrImg').offset().top}, 400);
	});
	$('a.askRec').click(function(e){
		e.preventDefault();
		var elID = $(this).attr('href').replace('#','');
		goHere(elID);
	});
	$('a.goTop').click(function(e){
		e.preventDefault();
		goHere('procHeader');
	});
});
