if( typeof($) != 'undefined') {

	$(document).ready(function() {
			
		//splash page
		$('#splashExtreme, #splashPrem, #splashHP').hover(
		  function () {
		    $(this).children('img').animate({
			    height: '105%',
			  }, 400 );
			;
		  },
		  function () {
		    $(this).children('img').animate({
			    height: '100%',
			  }, 450 );
			;
		  }
		);
				
		//gallery
		var changing = false;
		
		$('#galleryContents .img[src*="1"]').fadeIn(400);	

		$('#thumb').children('img').click(function(event) {
		    event.preventDefault();
			if(!changing) {
				changing = true;
				$('#galleryContents .img').fadeOut(400);
				var imgNum = $(this).attr('src').substring($(this).attr('src').length-5,$(this).attr('src').length-4);
				$('#galleryContents .img[src*="' + imgNum + '"]').fadeIn(400, function () {
		            changing = false;
		        });	
			}
		});
		
	});
}

function change() {}
