$(document).ready(function(){	
	// Hover states for search buttons
	$("input.search_btn").mouseenter(function(e){
		origSrc = this.src;
		this.src = origSrc.replace(/\.gif/,"_hover.gif");
	}).mouseleave(function(e){
		this.src = origSrc;
	});
});