$(document).ready(function() {
	  $('ul.agregaty-pradotworcze li:even').addClass ('even');
	  $('ul.agregaty-pradotworcze li:odd').addClass ('odd');
	  //alert($('ul.agregaty-pradotworcze li').size());
	  $('ul.agregaty-pradotworcze li').css('width',970/$('ul.agregaty-pradotworcze li').size());
	  $('ul.agregaty-pradotworcze li a').css('width',970/$('ul.agregaty-pradotworcze li').size());
	  $('a.fancy').fancybox();
	  
	  $('input#company').css('display','none');
	  setElementsHeight();
});

$(window).load(function(){
	setElementsHeight();
});

function setElementsHeight() {
	$cH=$('#content').height();
	$sH=$('#sidebar').height();

	if($cH>$sH) {
		$('#sidebar').height($cH);
	}
}

