$(function(){
	$('#search_input').focus(function(){
		if($(this).val() == 'Search...'){
			$(this).val('');
		}
	});
	
	$('#search_input').blur(function(){
		if($(this).val() == ''){
			$(this).val('Search...');
		}
	});
	
	//Do same for email signup box
	$('#email_signup_input').val('Email...');
	
	$('#email_signup_input').focus(function(){
		if($(this).val() == 'Email...'){
			$(this).val('');
		}
	});
	
	$('#email_signup_input').blur(function(){
		if($(this).val() == ''){
			$(this).val('Email...');
		}
	});
	
	//Zebra stripe calendar
	$('.calendar .view-field:even').css('backgroundColor', '#c3f0a6');
	$('.calendar .view-field:odd').css('backgroundColor', '#bbd3fb');
	
	//Open eBrochure in new window
	$('.menu-440 a').attr('target', '_blank');
	
	//Setup onclick for the homepage boxes
	$('#leisurebox').click(function(){location.href = '/leisure-time';});
	$('#familybox').click(function(){location.href = '/family-fun';});
	$('#adventurebox').click(function(){location.href = '/adventure-seekers';});
	
	$('#promote-wrapper textarea').click(function(){
		this.focus();
		this.select();
	});
});
