jQuery(document).ready(function(){
    
  // main page 5 reasons ...
    jQuery('#control_reasonforwebsite_1').click(function () {
    jQuery('#item_reasonforwebsite_1').animate({ opacity: "show", height: "show" }, "slow");
    });

    jQuery('#control_reasonforwebsite_2').click(function () {
    jQuery('#item_reasonforwebsite_2').animate({ opacity: "show", height: "show" }, "slow");
    });

    jQuery('#control_reasonforwebsite_3').click(function () {
    jQuery('#item_reasonforwebsite_3').animate({ opacity: "show", height: "show" }, "slow");
    });

    jQuery('#control_reasonforwebsite_4').click(function () {
    jQuery('#item_reasonforwebsite_4').animate({ opacity: "show", height: "show" }, "slow");
    });

    jQuery('#control_reasonforwebsite_5').click(function () {
    jQuery('#item_reasonforwebsite_5').animate({ opacity: "show", height: "show" }, "slow");
    });

  // Services page
    jQuery('#control_performancesites_1').click(function () {
    jQuery('#item_performancesites_1').animate({ opacity: "show", height: "show" }, "slow");
    });
    
    jQuery('#control_lor_1').click(function () {
    jQuery('#item_lor_1').animate({ opacity: "show", height: "show" }, "slow");
    });
    

});