$(document).ready(function() {
//Эффект по показу поисковой формы
$('#searchForm').show('drop', 1000);

/*
//Автозаполнение
$('#to').autocomplete("catalog2.php", {
		delay: 10,
		minChars: 1,
		matchSubset: 1,
		autoFill: true,
		maxItemsToShow: 10
	});
	*/	
//Работа кнопок
$( "button, input:submit" ).button();

//Модульное окно
$(function() {

	// if the function argument is given to overlay, it is assumed to be the onBeforeLoad event listener
	$("a[rel]").overlay(function() {

		// grab wrapper element inside content
		var wrap = this.getContent().find("div.wrap");

		// load only for the first time it is opened
		if (wrap.is(":empty")) {
			wrap.load(this.getTrigger().attr("href"));
		}
	});
});


}); //Конец ready

