$(document).ready(function() {
	$('.div-wiecej').each(function(index, item){
		if ($(item).offset().top < ($(item).parent().offset().top+$(item).parent().height()-10)) {
			liczba = Number($(item).parent().offset().top+$(item).parent().height()-9-$(item).offset().top);
			liczba = Math.floor(liczba);
			//alert('top:'+($(item).offset().top)+'\n'+'powinno byc:'+liczba);
			$(item).css('margin-top', liczba+'px');
		}
	});
	$('.div-wiecej2').each(function(index, item){
		if ($(item).offset().top < ($(item).parent().offset().top+$(item).parent().height()-10)) {
			liczba = Number($(item).parent().offset().top+$(item).parent().height()-15-$(item).offset().top);
			liczba = Math.floor(liczba);
			//alert('top:'+($(item).offset().top)+'\n'+'powinno byc:'+liczba);
			$(item).css('margin-top', liczba+'px');
			$(item).css('padding-bottom', '3px');
		}
	});
});
// funkcja rozqijq drzewo kategorii
function menu_click(el) 
{
	var styl;
	try {
		styl = document.getElementById("menu_"+el).style.display;
		
		if (styl=="none") {
		
			document.getElementById("menu_images_"+el).src = "images/menu/minus.gif";
			document.getElementById("menu_"+el).style.display = "block";
				
		} else {
		
			document.getElementById("menu_images_"+el).src = "images/menu/plus.gif";
			document.getElementById("menu_"+el).style.display = "none";		
		
		};
		
	} catch (e) { var eee =0;}
	
}


function showImage(src, width, height) {
       
       w=0;
       h=0;
       w = width + 40;
       h = height + 40;
		
        var Win = window.open('image.php?src='+src+"&width="+width+"&height="+height, "displayWindow",'width=' + w + ',height=' + h + ',resizable=0,scrollbars=yes,menubar=no' );
}


function oferta(numer_oferty, width, height) {
       
       w=0;
       h=0;
       w = width;
       h = height;
		
        var Win = window.open('kontakt.php?numer_oferty='+numer_oferty, "displayWindow",'width=' + w + ',height=' + h + ',resizable=0,scrollbars=yes,menubar=no' );
}

function drukuj(kid, id) {
       
     	w = 650;
		h = 400;
        
        var Win = window.open('index.php?kid='+kid+"&id="+id+"&drukuj=1", "displayWindow",'width=' + w + ',height=' + h + ',resizable=0,scrollbars=yes,menubar=no' );
}

function drukujOferty(kid) {
       
     	w = 650;
		h = 400;
        
        var Win = window.open('index.php?kid='+kid+"&drukuj=2", "displayWindow",'width=' + w + ',height=' + h + ',resizable=0,scrollbars=yes,menubar=no' );
}
