function getInputText(formfield, text)
{
 if(formfield.value == text)
 {
 formfield.value = '';
 }
 else if(formfield.value == '')
 {
 formfield.value = text;
 }
 else {}
}

jQuery(document).ready( function(){ 
	
		$("#signup-academy").validationEngine({
				ajaxSubmit: false,
				success : false,
				failure : function() {}
			});
			
		jQuery('.fade').innerfade({ 
			speed: 'slow', 
			timeout: 10000, 
			type: 'sequence', 
			containerheight: '55px' });
		jQuery('#season_wrapper').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' });
		jQuery('#photos').galleryView({
		   panel_width: 600,
	    panel_height: 400,
	     frame_width: 75,
	     frame_height: 50,
           easing: 'easeInOutQuad',
           pause_on_hover: true,
			overlay_height: 50,

		});
		
		/* Season switcher */
		jQuery( '#seasonswapper' ).change( function() {
			jQuery( '#seasonswapper' ).each(function() {
				location=jQuery(this).val();
			});
		});
		

	} ); 