	$().ready(function()
	{
		$('#oferta .produkty').jScrollPane();
		$("#oferta .toggle:visible").hide();
		
		$("#oferta .k").click(
			function(){
				if (!$(this).hasClass("d0")){
					if ($(this).parent().next("div").css("display")=='block'){
						$(this).parent().next('div').children('.clr').children('.arrow').children('.up').click();
					}else{
						$(this).parent().children('.d0').children('.down').click();
					}
				}
			}
		);
		
		$("#oferta a.down").click(
			function()
			{
				$("#oferta a.down:hidden").fadeIn("slow");
				$(this).fadeOut("slow");
				$("#oferta .toggle:visible").slideUp();
				$("#oferta ."+this.id+":hidden").slideDown();
			},
			function()
			{
				$("#oferta a.down:hidden").fadeIn("slow");
				$("#oferta ."+this.id).slideUp();
			}
		);
		
		$("#oferta a.up").click(
			function()
			{
				$("#oferta .toggle:visible").slideUp();
				$("#oferta ."+this.id+":hidden").slideDown();
				$("#oferta a.down:hidden").fadeIn("slow");
			},
			function()
			{
				$("#oferta ."+this.id).slideUp();
				$("#oferta a.down:hidden").fadeIn("slow");
			}
		);
		
		$("#oferta a.img").fancybox
		({
 			'zoomSpeedIn': 0, 
 			'zoomSpeedOut': 0, 
 			'overlayShow': true 			
		});
	});
