$(document).ready(function(){
   //remove border-bottom from last 2 divs in Contact Form in Contact page
   $('#contact_form fieldset div').eq(3).css({borderBottom:"none"});
   $('#contact_form fieldset div').eq(4).css({borderBottom:"none"});

   //validate forms
   if($('#contact').length > 0){
		$("#contact").validate();
	}
  
   //focus over circle_nav_outer
   $('area.trigger').mouseover(function() {
   
		$('html, body').animate({scrollTop:0}, 'slow');
        return false;
			
	});

	/*get rid of Skype from IE*/
   if ($(".phone, .phone-no-skype, .popup_tel").length>0) {
		$(".phone, .phone-no-skype, .popup_tel").each(function() {
			$(this).html($(this).html().replace(/\s/g,"<span style=\"display:none\">_</span> "));
		});
	}
});
