$(document).ready(function(){

	/*=========================================
	CONTACT INFO DISPLAY
	=========================================*/

	// Shift the position of the Contact Info Up
	$('div#contact_info').css({ top: '-95px'});

	// Add a new button to drop down the contact info
	$('body').append('<a id="revealContact" href="">Show Contact Info</a>');

	// Add the action to a#revealContact
	$('a#revealContact').click( function(){
		if ($('div#contact_info.revealed').length == 0) {
			$('div#contact_info').addClass("revealed");
			$('div#contact_info').animate({ top: '0'});
			$('a#revealContact').css({height: '100px'}, 200);
		} else {
			$('div#contact_info').removeClass("revealed");
			$('div#contact_info').animate({ top: '-95'}, 200);
			$('a#revealContact').css({height: '10px'});
		};
		return false;
	});


	/*=========================================
	CONTACT LINK DISPLAY
	=========================================*/

	// Hide li#constant_contact
	$('li#constant_contact').hide();

	$('li#contact_nav a').click( function(){
		if ($('.visibleContact').length > 0) {
			$(this).removeClass("visibleContact");
			$('li#constant_contact').fadeOut("fast");
			return false;
		};
	
		$(this).addClass("visibleContact");
		$('li#constant_contact').fadeIn("fast");
		return false;
	});
	
});
