// JavaScript Document

<!-- Start Code below is the code for the subnavigation to change on hover -->

function swap(one) {
	//changing the url for the search button
	//to display the red search button onmouseover
	one.src="/static/soccerbabes/images/home_over.gif";
		//onmouseout setting the url to display the default
		//search button
		one.onmouseout=function() {
			one.src="/static/soccerbabes/images/home.gif";
		}	
		
}

function swap2(two) {
	//changing the url for the search button
	//to display the red search button onmouseover
	two.src="/static/soccerbabes/images/models_over.gif";
		//onmouseout setting the url to display the default
		//search button
		two.onmouseout=function() {
			two.src="/static/soccerbabes/images/models.gif";
		}	
		
}

function swap3(three) {
	//changing the url for the search button
	//to display the red search button onmouseover
	three.src="/static/soccerbabes/images/players_over.gif";
		//onmouseout setting the url to display the default
		//search button
		three.onmouseout=function() {
			three.src="/static/soccerbabes/images/players.gif";
		}	
		
}

function swap4(four) {
	//changing the url for the search button
	//to display the red search button onmouseover
	four.src="/static/soccerbabes/images/sponsors_over.gif";
		//onmouseout setting the url to display the default
		//search button
		four.onmouseout=function() {
			four.src="/static/soccerbabes/images/sponsors.gif";
		}	
		
}
<!-- End Code below is the code for the navigation to change on hover -->
