jQuery(document).ready(function(){

// Fancybox ersätter Lightbox
	
	jQuery("a[rel*='lightbox']").fancybox({
		'overlayOpacity' : 0.6
	}); 

	// Inloggningsruta, "toggle/popdown" 

  jQuery(".login").toggle(function(){
                jQuery(".login-box").animate({"height": "toggle"}, { duration: 50 });
		  },
			 function(){
                jQuery(".login-box").animate({"height": "toggle"}, { duration: 100 });		
	 	 
            });
  jQuery(".logout").toggle(function(){
                jQuery(".logout-box").animate({"height": "toggle"}, { duration: 50 });
		  },
			 function(){
                jQuery(".logout-box").animate({"height": "toggle"}, { duration: 100 });		
	 	 
            });


	jQuery(".accordion h3").hover(function(){
	  jQuery(this).next(".Acontent").slideToggle("fast")
	  .siblings(".Acontent:visible").slideUp("fast");
	  jQuery(this).toggleClass("active");
	  jQuery(this).siblings("h3").removeClass("active");
	
	});


jQuery('.handelsbanken').hover(
		function () {
			//show its submenu
			jQuery('.avbetalning_handelsbanken', this).show();

		}, 
		function () {
			//hide its submenu
			jQuery('.avbetalning_handelsbanken', this).hide();			
		}
	);





});


