jQuery(document).ready(function(){

    // hide by default
    jQuery("#home-module-section .home-module").children().hide();

    // show when hovered...
    jQuery("#home-module-section .home-module").hover(
      function () {
        jQuery(this).children().fadeTo("slow", 0.9);
      }, 
      function () {
        jQuery(this).children().fadeOut(200);
      }
    );

    // add custom background image to first + last menu items
    jQuery("#access li a:first").addClass("dafirst");
    jQuery("#access li a:last").addClass("daend");

    // add colour to hovered row in footer
    jQuery("#listShops li").hover(
        function () {
          $(this).addClass("hover-row");
      }, 
      function () {
          $(this).removeClass("hover-row");
      }
    );


    jQuery('#welcome').click(function() {
      jQuery('#home-content').toggle(2000);
    });


});

