$(document).ready(function() {
	
    $('#jumpicon').hover(function(){
		$('#jumpicon').css('opacity','1.0');
		$('#speedicon').css('opacity','0.7');
		$('#throwsicon').css('opacity','0.7');
    return false;
    });
	
	$('#jumpicon').click(function(){
        $('#speed').fadeOut(300);
        $('#throws').fadeOut(300);
		$('#jump').fadeIn(300);
		$("body").css({"background-image":"url('http://coaching-track-and-field-athletics.com/wp-content/themes/Athletes/images/bgg.png')","background-color":"#898d55","background-repeat":"repeat-x"});   
    return false;
    });
	
    $('#speedicon').hover(function(){
		$('#jumpicon').css('opacity','0.7');
		$('#speedicon').css('opacity','1.0');
		$('#throwsicon').css('opacity','0.7');
    return false;
    });
	
	 $('#speedicon').click(function(){
        $('#jump').fadeOut(300);
        $('#throws').fadeOut(300);
		$('#speed').fadeIn(300);
		$("body").css({"background-image":"url('http://coaching-track-and-field-athletics.com/wp-content/themes/Athletes/images/bg.png')","background-color":"#8d0e23","background-repeat":"repeat-x"});
    return false;
    });

    $('#throwsicon').hover(function(){
		$('#jumpicon').css('opacity','0.7');
		$('#speedicon').css('opacity','0.7');
		$('#throwsicon').css('opacity','1.0');
    return false;
    });
	
	    $('#throwsicon').click(function(){
        $('#speed').fadeOut(300);
        $('#jump').fadeOut(300);
		$('#throws').fadeIn(300);
		$("body").css({"background-image":"url('http://coaching-track-and-field-athletics.com/wp-content/themes/Athletes/images/bgb.png')","background-color":"#596179","background-repeat":"repeat-x"});
    return false;
    });

});	

