// JavaScript Document
$(document).ready(function () {
	
	$('#classicBouncers').hide();
	$('#combos').hide();
	$('#slides').hide();
	$('#wetSlides').hide();
	$('#interactives').hide();
	$('#extras').hide();
	$('#table').hide();
	$('#generators').hide();
	
	$('#viewBouncers').hover(function() {
		$(this).attr("src","images/bouncers-button-over.png");
		}, function() {
			$(this).attr("src","images/bouncers-button.png");
	});
	$('#callUs').hover(function() {
		$(this).attr("src","images/call-button-over.png");
			}, function() {
		$(this).attr("src","images/call-button.png");
	});
	
	
	$('#classicLink').click(function(){
	 	$('#intro').hide("fast");
		$('#combos').hide("fast");
		$('#slides').hide("fast");
		$('#wetSlides').hide("fast");
		$('#interactives').hide("fast");
		$('#extras').hide("fast");
		$('#table').hide("fast");
		$('#generators').hide("fast");
		$('#classicBouncers').show("slow");						 
	});
	
	$('#comboLink').click(function(){
	 	$('#intro').hide("fast");
		$('#combos').show("slow");
		$('#slides').hide("fast");
		$('#wetSlides').hide("fast");
		$('#interactives').hide("fast");
		$('#extras').hide("fast");
		$('#table').hide();
		$('#generators').hide();
		$('#classicBouncers').hide("fast");						 
	});
	
	$('#slideLink').click(function(){
	 	$('#intro').hide("fast");
		$('#combos').hide("fast");
		$('#slides').show("slow");
		$('#wetSlides').hide("fast");
		$('#interactives').hide("fast");
		$('#extras').hide("fast");
		$('#table').hide("fast");
		$('#generators').hide("fast");
		$('#classicBouncers').hide("fast");						 
	});
	
	$('#interactiveLink').click(function(){
	 	$('#intro').hide("fast");
		$('#combos').hide("fast");
		$('#slides').hide("fast");
		$('#wetSlides').hide("fast");
		$('#interactives').show("slow");
		$('#extras').hide("fast");
		$('#table').hide("fast");
		$('#generators').hide("fast");
		$('#classicBouncers').hide("fast");						 
	});
	
	$('#extrasLink').click(function(){
	 	$('#intro').hide("fast");
		$('#combos').hide("fast");
		$('#slides').hide("fast");
		$('#wetSlides').hide("fast");
		$('#interactives').hide("fast");
		$('#extras').show("slow");
		$('#table').hide("fast");
		$('#generators').hide("fast");
		$('#classicBouncers').hide("fast");						 
	});
	$('#wetSlideLink').click(function(){
	 	$('#intro').hide("fast");
		$('#combos').hide("fast");
		$('#slides').hide("fast");
		$('#wetSlides').show("slow");
		$('#interactives').hide("fast");
		$('#extras').hide("fast");
		$('#table').hide("fast");
		$('#generators').hide("fast");
		$('#classicBouncers').hide("fast");						 
	});
	$('#tablesLink').click(function(){
	 	$('#intro').hide("fast");
		$('#combos').hide("fast");
		$('#slides').hide("fast");
		$('#wetSlides').hide("fast");
		$('#interactives').hide("fast");
		$('#extras').hide("fast");
		$('#table').show("slow");
		$('#generators').hide("fast");
		$('#classicBouncers').hide("fast");						 
	});
	$('#generatorsLink').click(function(){
	 	$('#intro').hide("fast");
		$('#combos').hide("fast");
		$('#slides').hide("fast");
		$('#wetSlides').hide("fast");
		$('#interactives').hide("fast");
		$('#extras').hide("fast");
		$('#table').hide("fast");
		$('#generators').show("slow");
		$('#classicBouncers').hide("fast");						 
	});
});