		$(document).ready(function(){
			$('#peoplesearch').click(function(){
				var fname = '';
				var lname = '';
				var location = '';
				
				if(fname != 'First Name'){
					fname = $('#firstname').val();
				} else {
					$('#firstname').val() = '';
				}
				if(lname != 'Last Name'){
					lname = $('#lastname').val();
				} else {
					$('#lastname').val() = '';
				}
				if(location != 'Location'){
					location = $('#location').val();
				} else {
					$('#location').val() = '';
				}
				
				$('#peoplesearchform').submit();
			});
		

			$('#businesssearch').click(function(){
					$('#businesssearchform').submit();
			});
			
		
			$('#reversephone').click(function(){
					$('#reversephoneform').submit();
			});
			
			// Location Auto Complete
		function log( message ) {
			$( "#pslocation" ).value = $( "<div/>" ).text( message );
		}
		/*
		$( "#pslocation" ).autocomplete({
			source: function( request, response ) {
				$.ajax({
					url: "http://ws.geonames.org/searchJSON",
					dataType: "jsonp",
					data: {
						featureClass: "P",
						style: "full",
						maxRows: 12,
						country: "US",
						name_startsWith: request.term
					},
					success: function( data ) {
						response( $.map( data.geonames, function( item ) {
							return {
								label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
								value: item.name + (item.adminName1 ? ", " + item.adminName1 : "")
							}
						}));
					}
				});
			},
			minLength: 2,
			select: function( event, ui ) {
				log( ui.item ?
					"Selected: " + ui.item.label :
					"Nothing selected, input was " + this.value);
			},
			open: function() {
				$( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
			},
			close: function() {
				$( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
			}
		});
			
		$( "#bslocation" ).autocomplete({
			source: function( request, response ) {
				$.ajax({
					url: "http://ws.geonames.org/searchJSON",
					dataType: "jsonp",
					data: {
						featureClass: "P",
						style: "full",
						maxRows: 12,
						country: "US",
						name_startsWith: request.term
					},
					success: function( data ) {
						response( $.map( data.geonames, function( item ) {
							return {
								label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
								value: item.name + (item.adminName1 ? ", " + item.adminName1 : "")
							}
						}));
					}
				});
			},
			minLength: 2,
			select: function( event, ui ) {
				log( ui.item ?
					"Selected: " + ui.item.label :
					"Nothing selected, input was " + this.value);
			},
			open: function() {
				$( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
			},
			close: function() {
				$( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
			}
		});
		*/
			
		});
