$(document).ready(function() {
$("div#menu ul").children(':first').css("border-left" , "0px solid");

$("input").blur(function(){
	 	$('#suggestions').fadeOut();
	 });


$(".category").hover(
  function () {
    $(this).css("background-color" , '#876039').children("a").css("color" , "#F6F2D8");
  },
  function () {
    $(this).css("background-color" , '#F6F2D8').children("a").css("color" , "#876039");
  }
)
  ;
});

function lookup(inputString, url) {




  $('#suggestions').html('');
	if(inputString.length < 3) {
		$('#suggestions').fadeOut();
                 // Hide the suggestions box
	} else {
            
		$.post(url, {queryString: ""+inputString+""}, function(data) { // Do an AJAX call

                        $.each(data, function(i, item){

                   $('#suggestions').append('<p id="searchresults">' +
                    '<a href="/graj/'+ item.link +'.html">' + item.nazwa + '</a>' +
                    '<img src="/public/images/thumbs/' + item.link + '.jpg" alt="' + item.nazwa + '" />' +
                    '<span class="category">Kateogoria : ' + item.katnazwa + '</span>' +
                    '<span class="desc">' + item.opis + '</span></p>');

                        $('#suggestions').fadeIn(); // Show the suggestions box
                            });
			 // Fill the suggestions box
		}, 'json');
	
}

}

 
