


/* Declare a namespace for the site */
var Site = window.Site || {};



/* Create a closure to maintain scope of the '$'
   and remain compatible with other frameworks.  */
(function($) {
	//same as $(document).ready();


$(function() {
	$('#menu-top_nav > li.menu-item').mouseenter(function(){
	$(' >.sub-menu',this).fadeIn(150);	
	
});

$('#menu-top_nav > li.menu-item').mouseleave(function(){
	$('#menu-top_nav > li.menu-item >.sub-menu').hide();	
	
});

});
	
	



$(function() {
$('ol.author-list').after('<h4><a href="http://sportwizjer.pl/blogerzy" style="float: right;width: 100%;text-align: right;margin: 0 12px auto auto;">Wszyscy&raquo;</a></h4>');	
});

$.widget( "custom.catcomplete", $.ui.autocomplete, {
		_renderMenu: function( ul, items ) {
			var self = this,
				currentCategory = "";
			$.each( items, function( index, item ) {
				if ( item.category != currentCategory ) {
					ul.append( "<li class='ui-autocomplete-category'>" + item.category + "</li>" );
					currentCategory = item.category;
				}
				self._renderItem( ul, item );
			});
		}
	});
	



	$(window).bind("load", function() {
		
		
	
	});
	
})(jQuery);
