//// JQUERY Plugin - Navigation 

$(document).ready(function(){

	$("#navproducts").hover( 
		function () { 
			$("#navproductsntab").show(); 
			$(this).addClass("active"); 
		},
		function () { 
			$("#navproductsntab").hide(); 
			$(this).removeClass("active"); 
		}
	);

	$("#wheretobuy").hover( 
		function () { 
			$("#wheretobuyntab").show(); 
			$(this).addClass("active"); 
		},
		function () { 
			$("#wheretobuyntab").hide(); 
			$(this).removeClass("active"); 
		}
	);

	$("#technology").hover( 
		function () { 
			$("#technologyntab").show(); 
			$(this).addClass("active"); 
		},
		function () { 
			$("#technologyntab").hide(); 
			$(this).removeClass("active"); 
		}
	);

	$("#athletes").hover( 
		function () { 
			$("#athletesntab").show(); 
			$(this).addClass("active"); 
		},
		function () { 
			$("#athletesntab").hide(); 
			$(this).removeClass("active"); 
		}
	);

	$("#news").hover( 
		function () { 
			$("#newsntab").show(); 
			$(this).addClass("active"); 
		},
		function () { 
			$("#newsntab").hide(); 
			$(this).removeClass("active"); 
		}
	);

	$("#about").hover( 
		function () { 
			$("#aboutntab").show(); 
			$(this).addClass("active"); 
		},
		function () { 
			$("#aboutntab").hide(); 
			$(this).removeClass("active"); 
		}
	);



});
