$(document).ready(function()  {
 
	$('#img_home').mouseover(function()  {
	        $(this).attr('src', 'images/nav_home_over.png');
	});

	$('#img_home').mouseout(function()  {
	        $(this).attr('src', 'images/nav_home_off.png');
	});
 
	$('#img_join').mouseover(function()  {
	        $(this).attr('src', 'images/nav_join_over.png');
	});

	$('#img_join').mouseout(function()  {
	        $(this).attr('src', 'images/nav_join_off.png');
	});
 
	$('#img_schedule').mouseover(function()  {
		$(this).attr('src', 'images/nav_schedule_over.png');
	});

	$('#img_schedule').mouseout(function()  {
	        $(this).attr('src', 'images/nav_schedule_off.png');
	});

	$('#img_wristbands').mouseover(function()  {
		$(this).attr('src', 'images/nav_wristbands_over.png');
	});

	$('#img_wristbands').mouseout(function()  {
	        $(this).attr('src', 'images/nav_wristbands_off.png');
	});
			
	$('.top_menu2').each(function()  {
		$(this).click(function()  {
		      window.open('http://'+ $(this).html());
	        });
	});
});
