$.fn.kolekcjeItemsHeader = function () {
	var maxHeight = 0;
	
	$('div.item h4', this).each( function() {
	  if ( this.offsetHeight > maxHeight ) {
	    maxHeight = this.offsetHeight;
		}
	});
	
	$('div.item h4', this).height(maxHeight);
}


$(document).ready(function(){
	$('#collectionSelector select, #sortSelector select').change(function(){
		var val = $(this).find('option:selected').val();
		if (val!=0) location.href = val;	
	});
	
//	$('div.kolekcje').kolekcjeItemsHeader();
//  height: 1.25em; overflow: hidden; ?

//	$('#content div.itemWrapper').alignProducts();
});
