/* Javascript for the homepage forms */

$(document).ready(function(){
	// Put label text into text fields
	$("input.labelInside").putLabelInside();
	
	// Hover states for search buttons
	$("input.search_btn").mouseenter(function(e){
		this.src = "art/home/search/search_btn_hover.gif";
	}).mouseleave(function(e){
		this.src = "art/home/search/search_btn.gif";
	});
});