/* height element */

var height1;
var height2;
var news_td_length;
var promotion_td_length;
var mininmum;

$(window).load(function() {

	var i = 0;
	news_td_length = $(".newsTd .centerBoxContents").length;
	promotion_td_length = $(".promotionTd .centerBoxContents").length;

	if (news_td_length > 0 && promotion_td_length > 0) {

		if (news_td_length < promotion_td_length) {
			mininmum = news_td_length;
		} else {
			mininmum = promotion_td_length;
		}


		for (i = 0; i < mininmum; i++) {
			height1 = $(".newsTd .centerBoxContents:eq("+i+")").height();
			height2 = $(".promotionTd .centerBoxContents:eq("+i+")").height();
			if (height1 > height2) {
				$(".promotionTd .centerBoxContents:eq("+i+")").css("height", height1+"px");
			} else {
				$(".newsTd .centerBoxContents:eq("+i+")").css("height", height2+"px");
			}
		}
	}
		$("table#faqTable tbody tr:nth-child(odd) td, table#faqTable tbody tr:nth-child(odd) th").addClass("striped");

});

/* Kalkulator raty Zagiel */

function PoliczRate(koszyk) {
	window.open('https://www.zagiel.com.pl/kalkulator/index_smart.php?action=getklientdet_si_rata&shopNo=17550589&&goodsValue='+koszyk, 'Policz_rate', 'width=630,height=500,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
}

/* Photos Gallery */

$(function() {
	$('#gallery a').lightBox();
});