$(document).ready(function(){
	$(".shadow").each(function () {
		var htmlStr = $(this).html()+'<span>'+$(this).html()+'</span>';
		$(this).html(htmlStr);
	});
	$("#goCity select").each(function(){
		$(this).change(function(){
			$(this).attr("form").submit();
		});
	});
	$(".dodaj input[type=text]").each(function(){
		$(this).blur(function(){
			if ($(this).val()=='') $(this).val('0');
		});
		$(this).focus(function(){
			if ($(this).val()=='0') $(this).val('');
		});
	});
	$(".dodaj input[type=submit]").each(function(){
		$(this).click(function(){
			iloscObj = $("input[type=text]",$(this).parent());
			if (iloscObj.val()=='0') iloscObj.val('1');
		});
	});
});

function opisPelny(towId) {
	newWindow = window.open(pageUrl+'?q[m]=product&q[a]=pelny&pArg[id]='+towId,'newWindow','width=600,height=500,left=100,top=100,resizable,scrollbars');
	newWindow.document.close();
	newWindow.focus();
}
