$(function(){
	//Organize Main Nav into columns
	$("#nav_menu ul").columnize();
	
	if ($("#page_photo_wrapper").length === 0 && $("#home_page").length === 0) {
		$('body').addClass('no_photo');	
	}
	
	//Fixed tab toggle
	$('#footer_tab').click(function(){
		$('#footer_inner').slideToggle();
		$('#footer').toggleClass('open');
		$('#footer_tab h5').toggle();
	});
	
	//Add callout_1 class to top callout
	$('#content_page #sidebar .callout:first-child').addClass('callout_1');
	
	//Add div around callout img and callout overlay
	$('#sidebar .callout img').wrap('<span class="callout_img"></span>');
	$('#sidebar .callout .callout_img').prepend('<div class="callout_img_overlay"></div>');
	
	//Remove <p> tag from images in quote callout
	$('.callout_quote img').unwrap('p');
	
	//Footer input focus
	$('#footer .txt_box').focus(function(e) {
		if ($(this).val() == 'email address') {
			$(this).val('');
		}
	});	
	//Footer input blur
	$('#footer .txt_box').blur(function(e) {
		if ($(this).val() == '') {
			$(this).val('email address');
		}
	});
});
