$(document).ready(function() {
	
	$("#galleryPhotos a").lightBox();
	
	$('.product-photo a').lightBox();
	
	$('.productImage a').lightBox();
	
	$(".q a").click(function(){
		$(this).parent().parent().children(".a").slideToggle("normal");
	});

});

function center_img(padding){	
	
	$('.with-image-centered img').each(function(){
		
		var w = $(this).width();
		var h = $(this).height();
		var sizeH = $(this).parent().parent().height();
		var sizeW = $(this).parent().parent().width();
		
		$(this).css('top', ((Math.round((sizeH - h)/2))-padding)+'px');
		$(this).css('left', ((Math.round((sizeW - w)/2))-padding)+'px');
	
	});	
	
}

function updateAjax(contener,url,loader) {
	
	$.ajax({
		
		type: "GET",
		url: url,
		beforeSend: function(req) {
			if(loader == true) {
				$(contener).addClass("tc");
				$(contener).html('<img src="images/ajax-loader.gif" alt="Proszę czekać"/>');
			}
		},
		success: function (resp) {
			$(contener).removeClass("tc");
			$(contener).html(resp);
		},
		complete: function (req,status) {
			
		}
		
	})
	
}

