$(document).ready(function(){
	
	// Clear values from form fields
	$('input:text, input:password, textarea').focus(function(){
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
		$(this).blur(function(){
			if ($(this).val().length == 0) {
				$(this).val($(this).attr('title'));
			}
		});
	});
	
	// Main rotational
	$('div.rotational div.slides div.mod-wrapper').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 7000
	});
	
	// Upcoming Events
	$('div.upcoming_event a.learn').click(function(evt){
		$(this).siblings('div.event_info').toggle();
		evt.preventDefault();
	});
	$('div.upcoming_event a.close_learn').click(function(evt){
		$(this).parent().parent().hide();
		evt.preventDefault();
	});
	// Auto open
	if (window.location.hash) {
		var event_id = window.location.hash.substring(1);
		$('div.'+event_id+' div.event_info').show();
	}
	
	// Gallery, remove right margin from right-hand thumbs
	$('div.gallery a:odd').addClass('mr0');
	
	$('div.header ul li.email a').click(function(evt){
		$('div.newsletter').toggle();
		evt.preventDefault();
	});
	
	$('div.newsletter form input').eq(0).attr('title', 'enter email address');
	
	// Style course select menu
	$('select[name="dscf[1][20]"] option[value="Mat Classes"], select[name="dscf[1][20]"] option[value="Private Sessions"], select[name="dscf[1][20]"] option[value="Semi-Private Sessions"], select[name="dscf[1][20]"] option[value="Group Reformer"], select[name="dscf[1][20]"] option[value="Other"]').addClass('select_header');
	
});
