
			$(document).ready(function () {
								
				$('span').quicksearch({
					position: 'after',
					attached: 'h15',
					labelText: 'Szukaj branży',
					inputClass: 'pole'
				});	
					
			})			



        		$().ready(function()
        		{
        			$("#bookmarks li a").click(function()
        			{
        				$("#bookmarks .active").removeClass("active");
        				$(this).parent().addClass("active");
        
        				var classname = $(this).attr("class");
        
        				$("#content div:visible").hide();
        				$("#content div#"+classname).show();
        
        				return false;
        			});
        		});

  	 
  	 


          	$(document).ready(
          	function()
          	{
          		$("ul#lista li").children("h2").click( function() { $(this).next("p").toggle(); });
          	});




        	$(document).ready(
        	function()
        	{
        		$("ul#listab li").children("h2").click( function() { $(this).next("p").toggle(); });
        	});

 


        function popupWindow(url) {
          window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=50,screenY=50,top=50,left=50')
        }
 


            hs.graphicsDir = 'http://www.radiobielsko.pl/highslide/graphics/';
            hs.outlineType = 'rounded-black';

    

  $(document).ready(function(){
    
    $("button#wszystkie").click(function () {
      $("div#wszystkie_komentarze").toggle("slow");
    });    

  });



  $(document).ready(function(){
    
    $("button#dodaj").click(function () {
      $("div#dodaj_komentarz").toggle("slow");
    });    

  });



  $(document).ready(function(){
    
    $("div.aaabb").click(function () {
      $(this).hide("slide", { direction: "down" }, 10);
    });

  });



function maxLength2(e,o,v,m){
  if(!o.all&&e.keyCode!=0)return!0;
  return(document.getElementById(v).innerHTML=o.value.length)<m
}





$().ready(function() {

	function findValueCallback(event, data, formatted) {
		$("<li>").html( !data ? "No match!" : "Selected: " + formatted).appendTo("#result");
	}
	
	function formatItem(row) {
		return row[0] + " (<strong>id: " + row[1] + "</strong>)";
	}
	function formatResult(row) {
		return row[0].replace(/(<.+?>)/gi, '');
	}
	
	$("#suggest1").autocomplete(cities);
	$("#month").autocomplete(months, {
		minChars: 0,
		max: 12,
		autoFill: true,
		mustMatch: true,
		matchContains: false,
		scrollHeight: 220,
		formatItem: function(data, i, total) {
			// don't show the current month in the list of values (for whatever reason)
			if ( data[0] == months[new Date().getMonth()] ) 
				return false;
			return data[0];
		}
	});
	$("#suggest13").autocomplete(emails, {
		minChars: 0,
		width: 310,
		matchContains: true,
		autoFill: false,
		formatItem: function(row, i, max) {
			return i + "/" + max + ": \"" + row.name + "\" [" + row.to + "]";
		},
		formatMatch: function(row, i, max) {
			return row.name + " " + row.to;
		},
		formatResult: function(row) {
			return row.to;
		}
	});
	$("#singleBirdRemote").autocomplete("search.php", {
		width: 260,
		selectFirst: false
	});
	$("#suggest14").autocomplete(cities, {
		matchContains: true,
		minChars: 0
	});
	$("#suggest3").autocomplete(cities, {
		multiple: true,
		mustMatch: true,
		autoFill: true
	});
	$("#suggest4").autocomplete('search.php', {
		width: 300,
		multiple: true,
		matchContains: true,
		formatItem: formatItem,
		formatResult: formatResult
	});
	$("#imageSearch").autocomplete("images.php", {
		width: 320,
		max: 4,
		highlight: false,
		scroll: true,
		scrollHeight: 300,
		formatItem: function(data, i, n, value) {
			return "<img src='images/" + value + "' alt='' /> " + value.split(".")[0];
		},
		formatResult: function(data, value) {
			return value.split(".")[0];
		}
	});
	$("#tags").autocomplete(["c++", "java", "php", "coldfusion", "javascript", "asp"], {
		width: 320,
		max: 4,
		highlight: false, 
		multiple: true,
		multipleSeparator: " ",
		scroll: true,
		scrollHeight: 300
	});
	
	
	$(":text, textarea").result(findValueCallback).next().click(function() {
		$(this).prev().search();
	});
	$("#singleBirdRemote").result(function(event, data, formatted) {
		if (data)
			$(this).parent().next().find("input").val(data[1]);
	});
	$("#suggest4").result(function(event, data, formatted) {
		var hidden = $(this).parent().next().find(">:input");
		hidden.val( (hidden.val() ? hidden.val() + ";" : hidden.val()) + data[1]);
	});
    $("#suggest15").autocomplete(cities, { scroll: true } );
	$("#scrollChange").click(changeScrollHeight);
	
	$("#thickboxEmail").autocomplete(emails, {
		minChars: 0,
		width: 310,
		matchContains: true,
		highlightItem: false,
		formatItem: function(row, i, max, term) {
			return row.name.replace(new RegExp("(" + term + ")", "gi"), "<strong>$1</strong>") + "<br /><span style='font-size: 80%;'>Email: &lt;" + row.to + "&gt;</span>";
		},
		formatResult: function(row) {
			return row.to;
		}
	});
	
	$("#clear").click(function() {
		$(":input").unautocomplete();
	});
});
  
  


$(function(){

	$("#ya").jSuggest({
		url: "http://www.radiobielsko.pl/katalog/suggestion.html",
		type: "GET",
		data: "searchQuery",
		autoChange: true
	});

});
