
            
// Show Hide JS //            
$(document).ready(function(){		
 $(".L-S-E").click(function(){	
   $(".active").slideUp('fast');
     $(".GreyContainer-M").find(".active").removeClass("active");
     $(this).next(".Content").addClass('active');
   $(this).next(".active").slideToggle("slow,");
    if ($(this).css("backgroundPosition") == "0px -43px") {
        $(this).css("backgroundPosition", "0px 0px");
    } else {
        $(this).css("backgroundPosition", "0px -43px");
    }
    });
  });
