
stepcarousel.setup({
			galleryid: 'galleryB', //id of carousel DIV
			beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
			panelclass: 'book', //class of panel DIVs each holding content
			statusvars: ['reportA', 'reportB', 'reportC'],
			contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})
		
$(function(){
	$(".lightbox").lightbox();
	
	
	//$('#wydawnictwa a[@rel*=books]').lightBox();

  $('#clear_button').click(function() {
   		 $('#articles').find("input[type='checkbox']").attr('checked', '');
   	});
  $('#check_all_button').click(function() {
   		 $('#articles').find("input[type='checkbox']").attr('checked', 'checked');
   	});

 //$('#facets').hide();

    $('#shopping_details_ind').hide();
    $('#shopping_details_com').hide();

	$('#show_shopping_ind').click(function() {
   		$('#shopping_details_ind').slideToggle("slow");
   	});
    $('#show_shopping_com').click(function() {
   		$('#shopping_details_com').slideToggle("slow");
   	});

	 $('#show_all_project').click(function() {
   		$('#facets_project').slideToggle("slow");
   	});
   $('#hide_all_project').click(function() {
   		$('#facets_project').slideToggle("slow");
   });

   $('#show_all').click(function() {
   		$('#facets').slideToggle("slow");
   	});
   $('#hide_all').click(function() {
   		$('#facets').slideToggle("slow");
   });



   $('#book_details_more').hide();

   $('#show_book_details').click(function() {
   		$('#book_details_more').toggle("slow");
   	});


   	$('.journal_prices_more').hide();

   $('.show_journal_prices_more').click(function() {
      	$(this).next().slideToggle();
      	$source =  $(this).find('IMG.indicator').attr('src');
      	if ($source == 'images/dol.gif')
      		$source = 'images/gora.gif';
      	else
      		$source = 'images/dol.gif';
       	$(this).find('IMG.indicator').attr('src', $source);
   });



	// Zakladki w koszyku
	
	$("#CartComDetails").hide();

	$("#showCartIndDetails").click(function(){		
		showInd();
	});

	$("#showCartComDetails").click(function(){
		showCom();
	});
	
	//zakladki w panelu zamowien czasopism
	$("#ComDetails").hide();


	
	//formularze zamowien
	$("#post_ind_details").hide();
	$("#post_com_details").hide();
	
	$("#postAddressIndEnable").click(function(){
		if ($('#postAddressIndEnable').is(':checked')){
			$("#post_ind_details").show('slow');
		}else{
			$("#post_ind_details").hide('slow');
		}
		
	});
	
	$("#postAddressComEnable").click(function(){
		if ($('#postAddressComEnable').is(':checked')){
			$("#post_com_details").show('slow');
		}else{
			$("#post_com_details").hide('slow');
		}
	});
	
	

	
});


function goToUrl(url){
	location.href=url;
}

function showIndDiv(id){
		$("#ComDetails_"+id).hide();
		$("#IndDetails_"+id).show('slow');
	}
	
	function showComDiv(id){
		$("#IndDetails_"+id).hide();
		$("#ComDetails_"+id).show('slow');
	}

function showInd(){
		$("#CartComDetails").hide();
		$("#CartIndDetails").show('slow');
		$("#showCartIndDetails").css('color','#B0B836');
		$("#showCartComDetails").css('color','#506070');
		

}


function showCom(){
		$("#CartIndDetails").hide();
		$("#CartComDetails").show('slow');
		$("#showCartComDetails").css('color','#B0B836');
		$("#showCartIndDetails").css('color','#506070');
		
}

