
var homePg = {};


/*
 *  Use jQuery to trigger any page initialization.
 */
var serviceURL = './getAC.php';  // results must contain search term
var options, a;
$(document).ready(function(){ 


	 
	options = { serviceUrl:serviceURL, 
			maxHeight:400,
			deferRequestBy: 10, //miliseconds
			onSelect: rbow.findIt,
			width:320};

	a = $('#txtSearch').autocomplete(options);


	// hide the categories division
	$("#catlist").hide();

	rbow.txtlocation = rbow.ipCity
	$('#txtlocation').val(rbow.ipCity);


	$('#txtSearch').keypress(function(event) {
		if (event.keyCode == '13') {
			event.preventDefault();
			rbow.findIt();
		}
	});
	$('#txtlocation').keypress(function(event) {
		if (event.keyCode == '13') {
			event.preventDefault();
			rbow.findIt();
		}
	});	



//	$("#androidbox" ).dialog({ autoOpen: false, modal:true, width:450, height:500});
//	$("#iphonebox" ).dialog({ autoOpen: false, modal:true, width:450, height:500});



});





