$(document).ready(function(){
    
    //Feature Games Rollovers
	$('#featuredGamesSurf').hover(function() {
		if ($(this).attr("src") != "/images/featuredGames/surf-on.gif"){
			$(this).attr("src","/images/featuredGames/surf-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/featuredGames/surf-on.gif"){
		$(this).attr("src","/images/featuredGames/surf-off.gif");}
	});
	
	$('#featuredGamesSkate').hover(function() {
		if ($(this).attr("src") != "/images/featuredGames/skate-on.gif"){
		$(this).attr("src","/images/featuredGames/skate-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/featuredGames/skate-on.gif"){
			$(this).attr("src","/images/featuredGames/skate-off.gif");}
	});
	
	$('#featuredGamesSnow').hover(function() {
		if ($(this).attr("src") != "/images/featuredGames/snow-on.gif"){
			$(this).attr("src","/images/featuredGames/snow-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/featuredGames/snow-on.gif"){
			$(this).attr("src","/images/featuredGames/snow-off.gif");}
	});
	
	$('#featuredGamesMoto').hover(function() {
		if ($(this).attr("src") != "/images/featuredGames/moto-on.gif"){
			$(this).attr("src","/images/featuredGames/moto-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/featuredGames/moto-on.gif"){
			$(this).attr("src","/images/featuredGames/moto-off.gif");}
	});
	
	$('#featuredGamesWake').hover(function() {
		if ($(this).attr("src") != "/images/featuredGames/wake-on.gif"){
			$(this).attr("src","/images/featuredGames/wake-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/featuredGames/wake-on.gif"){
			$(this).attr("src","/images/featuredGames/wake-off.gif");}
	});
	
	$('#featuredGamesBMX').hover(function() {
		if ($(this).attr("src") != "/images/featuredGames/bmx-on.gif"){
			$(this).attr("src","/images/featuredGames/bmx-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/featuredGames/bmx-on.gif"){
			$(this).attr("src","/images/featuredGames/bmx-off.gif");}
	});
	
	$('#featuredGamesMotor').hover(function() {
		if ($(this).attr("src") != "/images/featuredGames/motor-on.gif"){
			$(this).attr("src","/images/featuredGames/motor-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/featuredGames/motor-on.gif"){
		$(this).attr("src","/images/featuredGames/motor-off.gif");}
	});

    //Main Nav Rollovers
	$('#mainNavSurf').hover(function() {
		if ($(this).attr("src") != "/images/header/navigation/surf-on.gif"){
			$(this).attr("src","/images/header/navigation/surf-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/header/navigation/surf-on.gif"){
		$(this).attr("src","/images/header/navigation/surf-off.gif");}
	});
	
	$('#mainNavSkate').hover(function() {
		if ($(this).attr("src") != "/images/header/navigation/skate-on.gif"){
		$(this).attr("src","/images/header/navigation/skate-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/header/navigation/skate-on.gif"){
			$(this).attr("src","/images/header/navigation/skate-off.gif");}
	});
	
	$('#mainNavSnow').hover(function() {
		if ($(this).attr("src") != "/images/header/navigation/snow-on.gif"){
			$(this).attr("src","/images/header/navigation/snow-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/header/navigation/snow-on.gif"){
			$(this).attr("src","/images/header/navigation/snow-off.gif");}
	});
	
	$('#mainNavMoto').hover(function() {
		if ($(this).attr("src") != "/images/header/navigation/moto-on.gif"){
			$(this).attr("src","/images/header/navigation/moto-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/header/navigation/moto-on.gif"){
			$(this).attr("src","/images/header/navigation/moto-off.gif");}
	});
	
	$('#mainNavWake').hover(function() {
		if ($(this).attr("src") != "/images/header/navigation/wake-on.gif"){
			$(this).attr("src","/images/header/navigation/wake-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/header/navigation/wake-on.gif"){
			$(this).attr("src","/images/header/navigation/wake-off.gif");}
	});
	
	$('#mainNavBMX').hover(function() {
		if ($(this).attr("src") != "/images/header/navigation/bmx-on.gif"){
			$(this).attr("src","/images/header/navigation/bmx-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/header/navigation/bmx-on.gif"){
			$(this).attr("src","/images/header/navigation/bmx-off.gif");}
	});
	
	$('#mainNavMMA').hover(function() {
		if ($(this).attr("src") != "/images/header/navigation/mma-on.gif"){
			$(this).attr("src","/images/header/navigation/mma-over.gif");}
		}, function() {
		if ($(this).attr("src") != "/images/header/navigation/mma-on.gif"){
		$(this).attr("src","/images/header/navigation/mma-off.gif");}
	});



});