jQuery(document).ready(function($) {
	$('a[rel]').lightBox({
		'overlayOpacity':	0,
		'txtImage': 'Zdjęcie',
		'txtOf': 'z'
	});
}); 
	


function goPage(page) 
{
	$('#offset').val(page);
	
	$('#frm_szukaj').submit();
}



/*
	formatuje cene
*/
function formatCeny(obj)
{
	result = obj.value.replace(",", ".");

	if (result.indexOf(".") == -1)
	result += ".00";
	
	if (result.indexOf(".")>result.length-2)
	result += "00";
	if (result.indexOf(".")>result.length-3)
	result += "0";
	
	obj.value = result;
	
	return (/^(\d+\.?\d{2})$/.test(obj.value)?(obj.defaultValue=obj.value,1):'')||(obj.value=obj.defaultValue)
}



/*
	odswiez koszyk
*/
function wczytajKoszyk()
{
	
	$('#t_navig_k').load("/koszyk/ajax_koszyk.html",
	function(){
		
	});	
}


/*
	dodaj do koszyka
*/
function dodajDoKoszyka(id)
{
	if (typ_h>0) 
	{
		window.location='/kontakt.html';
		return;
	}
	
	$.post("/produkty/ajax_dokoszyka.html", { 
		id: id,
		sztuk: $('#sztuk'+id).val(),
		kolor: (!$('#kolor'+id).val()?'':$('#kolor'+id).val())
	},
	function(data){
		wczytajKoszyk();
		$('#info1').fadeIn();
		setTimeout("$('#info1').fadeOut();", 2000);
	}, "json");
}


