/**
 * Additional onload functionality
 */
$(document).ready(function() {
	if($('#location_input').isDefined()) {
		$('#location_input').suggest();
		$('#keyword_input').inputToggle('Business, Category or Keyword');
		$('#location_input').inputToggle('City or Zip Code');
	}
	$('#searchFormHolder').submit(function() {
		if($('#location_input').val() == 'City or Zip Code') $('#location_input').val('');
	});
	
	
	if(typeof(pageMode)=='undefined') return;
});



jQuery.fn.isDefined = function() {
	return typeof($(this)[0]) != 'undefined';
}
jQuery.fn.inputToggle = function(phrase) {
	var t = $(this);
	if(t.val() == '') t.val(phrase);
	t.bind("focus", function(e) {
		if(t.val() == phrase) t.val('');
	});
	t.bind("blur", function(e) {
		if(t.val() == '') t.val(phrase);
	});
}