// Searchy button
$(document).ready(function(){
	$('#submit').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : '/images/nav_search_over.gif'});
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : '/images/nav_search_reg.gif'});
		}
	);
});
