$(document).ready(function() {
	
	$('#n-kategorie').hover(
		function() {
			$("#n-produkty").addClass("active");
		},
		function() {
			$("#n-produkty").removeClass("active");
		}
	);
	
	$('#producent').change(function(){
		var link = '/index.php/producent/' + $(this).val() + '/' + $('#producent :selected').attr('rel');
		window.location = link;
	});
	
	$('#kategorie li:first').addClass('first');
	$('#kategorie li:last').addClass('last');
	
	$('#cecha').change(function() {
		//var wartosc = $(this).val();
		if($('#cecha :selected').attr("rel"))
		{
			var cena_przed  = $('#cecha :selected').attr("rel");
			var cena_po = $('#cecha :selected').attr("rev");
			// console.log(cena_po);
			if(cena_po)
			{
				$("#price-box-cena-netto").replaceWith('<span id="price-box-cena-netto"><del><span id="js-cena-przed">'+cena_przed+' zł</span></del> <em><span id="js-cena-po">'+cena_po+' zł</span></em></span>');
			}
			else
			{
				$("#price-box-cena-netto").replaceWith('<span id="price-box-cena-netto">'+cena_przed + ' zł</span>');
			}
		}
	});
	
	//$('#dostawa').attr('checked', false);
	if ( $('#dostawa').attr("checked") )
	{
		$('#podaj-adres-dostawy').show();
	}
	
	$('#dostawa').click(function() {
		if ( $('#dostawa').attr("checked") )
		{
			$('#podaj-adres-dostawy').fadeIn();
		}
		else
		{
			$('#podaj-adres-dostawy').fadeOut();
		}
	});
	
	// raty zagiel
	if ( $('#p_d_5').attr("checked") )
	{
		$('#raty-akceptacja').show();
	}
	
	$('p.radio input').click(function() {
		if ( $('#p_d_5').attr("checked") )
		{
			$('#raty-akceptacja').fadeIn();
		}
		else
		{
			$('#raty-akceptacja').fadeOut();
		}
	});
	
	// anmerkungen
	if ( $('#anmerkungen').attr("checked") )
	{
		$('#podaj-anmerkungen').show();
	}
	
	$('#anmerkungen').click(function() {
		if ( $('#anmerkungen').attr("checked") )
		{
			$('#podaj-anmerkungen').fadeIn();
		}
		else
		{
			$('#podaj-anmerkungen').fadeOut();
		}
	});
	
	$("a.external").click(function() {
    	window.open(this.href);
        return false;
    });
			
// eof: document.ready	
});