function pop(plik,w,h){
	okno = null;
	
	if(window.screen){
		aw = screen.availWidth;
		ah = screen.availHeight;
	} else {
		aw=640;
		ah=480;
	}
	
	dane="width="+w+",height="+h+",left="
	+(aw-w)/2+",top="
	+(ah-h)/2 
	+",toolbar=no,location=no,directories=no,"
	+"status=no,menubar=no,"
	+"scrollbars=auto,resizable=yes";
	okno=window.open(plik,'pop',dane);
}


$(document).ready(function() {
	tooltip();
	$('#coin-slider').coinslider({ width: 960,  delay: 10000 });
	$('#lista-produktow .produkty:nth-child(5n+1)').addClass("first");
	$('.tabelka-produkt tr:nth-child(2n+1)').addClass("b2");
	
	$('.formsklep').hide();
	$('.nsklep a').click(function () { 
      $('.formsklep').toggle(); 
      return false;
    });


});

