var DEBUG = 0;
var ROOT_URL = "http://www.barusports.com";
var SECURE_ROOT_URL = "https://secure13.hostek.net/secure1/barusports";
var ROOT_DIR = ".";
// if (window.location != ROOT_URL) { ROOT_DIR = "../";  }
// alert(window.location);
$(document).ready(function() {
	$('#searchInput').bind('focusout',function() {replaceSearchString()});
	
	$('#searchInput').keypress(function(event) {
	if (event.keyCode == '13')
	{
/* 	  alert('Handler for .keypress() called.'); */
/* 		console.log("enter key pressed"); */
		$('#searchForm').submit();
	}
	});

	
});

function search(inputString) {
	if(inputString.length == 0) {
		$('#suggestions').hide();
	} 
	else {
		$("#searchInput").addClass("inProgress");
		$.post("cgi-bin/search.php", {searchString: ""+inputString+""}, function(data){      
			if(data.length >0) {
				$('#suggestions').show();
				$('#suggestionsList').html(data);
			}
			else {
				$('#suggestionsList').html("<div class='nothingFound'>Sorry, no products have been found.</div>");
			}
			
			$("#searchInput").removeClass("inProgress");
		});
	}
} 

function replaceSearchString() {
	// if i don't put the timeout here, the suggestions are hidden and you can't click on the links
	setTimeout(function(){
		$('#searchInput').val('Search for product...');
		$('#suggestions').hide(); 
	   }, 200); 
}
