$(function() {
	// footer promo open and close
	$('#footer-promo-header a').click(
		function() {
			if($('#footer-promo-content').css('display') == 'none') {
				$('#footer-promo-header span').css('background-position', 'top')
				$('#footer-promo-content').slideDown();
			} else {
				$('#footer-promo-header span').css('background-position', 'bottom')
				$('#footer-promo-content').slideUp();
			}
		}
	);
	
	$('#header-social img').hover(
		function() {
			$(this).fadeTo('fast', .6);
		},
		function() {
			$(this).fadeTo('fast', 1);
		}
	);
	
	$('#footer-promo-content-video-button').colorbox({
		iframe: true,
		innerHeight: 338,
		innerWidth: 600	
	});
	
	// If form inputs have a default value, clear on focus
	$('.default-text').focus(function() {
		this.value = "";
		$(this).removeClass('default-text');
	})
	// Restore default text
	.blur(function() {
		if(!this.value.length) {
			this.value = this.defaultValue;
			$(this).addClass("default-text");
		}
	});
});
