// JavaScript Document
$(document).ready(function(){
	
	$("#search-form .button input").hover(
	function(){
		$(this).attr("src", "images/button-search-over.png");
	},
	function(){
		$(this).attr("src", "images/button-search-out.png");
	});
	
});
