$().ready(function() {

$("#city").autocomplete("auto-ajax.php", {
		extraParams: {
			state: function() { return $("#stt").val(); }
		},
		max: 50,
		scrollHeight: 80,
		width: 135
});

$(window).scroll(function() {
	$('#sidebar1').stop().animate({top: $(document).scrollTop()},'slow');
});

$("#top").hover(function() {
	$("#ppup").css({display: 'none'});
	$(this).stop(true,true);
	$("#ppup").fadeIn(150);
}, function() {
	$("#ppup").fadeOut(200);
});
$("#top > a:first").click(function(e) {
	e.preventDefault();
});

$("#search-query").css({color: "#ccc"});
$("#search-query").focus(function() {
	this.value="";
	$(this).css({color: "#272727"});
});

});
