// Header Rollover Links

 $(document).ready(function(){
		$('#header li a').mouseenter(function() {
			 $(this).animate({ borderBottomColor:"#CDB231"}, "200");
	});
		$('#header li a').mouseleave(function() {
    		$(this).animate({ borderBottomColor:"#759999"}, "200");					
	});
});
 
 // Contact Form
 
 $(function(){
	$('#name').focus(focus).blur(blur)[0].defaultValue="Your Name";
    $('#email').focus(focus).blur(blur)[0].defaultValue="Email Address";
	$('#message').focus(focus).blur(blur)[0].defaultValue="Type your message here...";
});

function focus(){
    this.value = (this.value == this.defaultValue)?'':this.value;
}
function blur(){
    this.value = (this.value == '')?this.defaultValue:this.value;
}

function removeError(){
	$('#error').hide
}

// Rollover Image Buttons 

$(document).ready(function () {
      $(".swap").each(function () { $('<img/>')[0].src = this.src.replace("-normal", "-over"); $(this).hover(function () { this.src = this.src.replace("-normal", "-over"); }, function () { this.src = this.src.replace("-over", "-normal"); }); });
});
