﻿//var siteAddress = 'http://www.wzs.civ.pl/';
var siteAddress = 'http://www.zabijnude.pl/';
$(document).ready(function() {

	//ustaw focus na wyszukiwarke
	$("#q").focus();
	
	
	//toogle debugBox
	$("#debugClose").click(function() {
		$(this).parent().toggleClass("debugMinimalised");
		return false;
	});

	//autouzupelnianie
	$("#q").autocomplete(siteAddress + "ajax.php", {
		width: 325,
		selectFirst: false,
		minChars: 3
	});
	
	//zapobieganie wysylaniu pustych zapytan
	$("#searchForm").add("#searchFormSide").submit(function(){
		if($("#q").attr("value") == "") {
			$("#q").focus().addClass("error");
			return false;
		}
	});

});
