/* jQuery functions here please */

 $(document).ready(function(){

   $("div#RHH-button").toggle(function(){
     $("#RHH").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#RHH").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#anniversary-button").toggle(function(){
     $("#anniversary").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#anniversary").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#frogmore1-button").toggle(function(){
     $("#frogmore1").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#frogmore1").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#paddington1-button").toggle(function(){
     $("#paddington1").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#paddington1").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#rafMuseum-button").toggle(function(){
     $("#rafMuseum").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#rafMuseum").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#atlee1-button").toggle(function(){
     $("#atlee1").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#atlee1").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#crown-button").toggle(function(){
     $("#crown").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#crown").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#admiralty1-button").toggle(function(){
     $("#admiralty1").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#admiralty1").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#pru1-button").toggle(function(){
     $("#pru1").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#pru1").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#englishHeritage-button").toggle(function(){
     $("#englishHeritage").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#englishHeritage").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#palaceOfWestminster-button").toggle(function(){
     $("#palaceOfWestminster").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#palaceOfWestminster").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#galleria-button").toggle(function(){
     $("#galleria").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#galleria").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#stChristophers-button").toggle(function(){
     $("#stChristophers").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#stChristophers").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });

   $("div#lambeth-button").toggle(function(){
     $("#lambeth").animate({ height: 'show', opacity: 'show' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   },function(){
     $("#lambeth").animate({ height: 'hide', opacity: 'hide' }, 'normal');
     $(this).toggleClass("pophider-button-active");
   });
 });