// JavaScript Document
$(document).ready(function() {
						   
	$('#navHome').hover(function() {
  		$(this).attr("src", "../images/header-over_06.jpg");
	}, function() {
  		$(this).attr("src", "../images/header_06.jpg");
	});

	$('#navLogin').hover(function() {
  		$(this).attr("src", "../images/header_lo-over_06.jpg");
	}, function() {
  		$(this).attr("src", "../images/header_lo_06.jpg");
	});
	
	$('#navShop').hover(function() {
  		$(this).attr("src", "../images/header-over_07.jpg");
	}, function() {
  		$(this).attr("src", "../images/header_07.jpg");
	});	
	
	$('#navStatements').hover(function() {
  		$(this).attr("src", "../images/header-over_10.gif");
	}, function() {
  		$(this).attr("src", "../images/header_10.gif");
	});
	
	$('#navDetails').hover(function() {
  		$(this).attr("src", "../images/header-over_11.gif");
	}, function() {
  		$(this).attr("src", "../images/header_11.gif");
	});
	
	$('#navKeywords').hover(function() {
  		$(this).attr("src", "../images/header-over_12.gif");
	}, function() {
  		$(this).attr("src", "../images/header_12.gif");
	});
			
	$('#navHelp').hover(function() {
  		$(this).attr("src", "../images/header-over_13.gif");
	}, function() {
  		$(this).attr("src", "../images/header_13.gif");
	});
	
	$('#navLogout').hover(function() {
  		$(this).attr("src", "../images/logout-over.gif");
	}, function() {
  		$(this).attr("src", "../images/logout.gif");
	});
	
	$('#keywordSubmit').hover(function() {
  		$(this).attr("src", "../images/keyword-submit-over.png");
	}, function() {
  		$(this).attr("src", "../images/keyword-submit.png");
	});
	
	
	
	
});
