// JavaScript Document
$(document).ready(function(){

	//Search click
	$('#search_btn_top').css("cursor","pointer");
	
	$('#search_btn_top').mouseup(function() {
		$("#search_error_container").hide();									 
		$('#search_btn_top[rel]').overlay();	
		$("#search_form").validate({
			errorLabelContainer: "#search_error_container",
   			wrapper: "p"								  
		});
	});	//end mouseup
	
	
	
	
}); //End doc ready

