function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready(function(){
	
	$('.menu-kategorii').prepend('&raquo; ');
	$('.subcategory a').prepend('- ');
	
	$('.product-boxes input').each(function(){
		if($(this).attr('name')=='koszyk')
			$(this).attr({'src':'images/buttons/do-koszyka.gif'});
	});
	
	$('.product_detail input').each(function(){
		if($(this).attr('src')=='img/p_koszyk.gif')
			$(this).attr({'src':'images/buttons/do-koszyka.gif'});
			$(this).addClass('basketButton');
	});
	
	$('img').each(function(){
		if($(this).attr('src')=='img/przechowalnia.gif')
			$(this).attr({'src':'images/buttons/do-przechowalni.gif'});
	});
	
	$('.product-short-desc').each(function(){
		var actualLength = $(this).html().length;
		var actualText = $(this).html();
		if(actualLength>150) $(this).html(actualText.substr(0,150)+'...');
	});
	
	$('.basket-page .tabela-normal tr:first').addClass('tableHeader');
	$('.basket-page .button:eq(1)').addClass('button-red');
	$('.basket-page .button:eq(2)').addClass('button-yellow');
	
	$('.tableHeader td:first').addClass('rounded');
	$('.tableHeader td:last').addClass('rounded-2');
	
	$("a.fancy").fancybox();
		
	equalHeight($(".box-promo-body"));
	
	$(document).pngFix(); 

});
