

$(document).ready(function() {

   $("DIV.rollover_div").fadeTo(0, 0);

   $("DIV.image_rollover_div").fadeTo(0, 0);

   $("DIV.image_text_div").fadeTo(0, 0);

    $("#text_div").fadeTo(0, 0);

    $("#close_text").fadeTo(0, 0);

   $("DIV.gallery_image_div").hover(
        function()
        {
            $(this).find("DIV.image_text_div").fadeTo(0, 1);
             $(this).find("DIV.image_rollover_div").fadeTo(0, 0.6);
        },
        function()
        {
             $(this).find("DIV.image_text_div").fadeTo(0, 0);
             $(this).find("DIV.image_rollover_div").fadeTo(0, 0);
        }
    );

   $("DIV.rollover_div").hover(
        function()
        {
            $(this).fadeTo("fast", 1);
        },
        function()
        {
            $(this).fadeTo("fast", 0);
        }
    );

// Links rollover
   $(".text_link").hover(
            function()
            {
               $(this).css("color", "#D1A343");
            },
            function()
            {
               $(this).css("color", "#d4d4d4");
            });

// Menu images rollover
   $(".menu_image").fadeTo("fast", 0);
   $(".menu_image").hover(
            function()
            {
               $(this).fadeTo("fast", 0.6  );
            },
            function()
            {
               $(this).fadeTo("fast", 0  );
            });



// Rollover for images under links
   $(".top_menu_link").hover(
            function()
            {
               $("a[href='" + $(this).attr("href") + "']").closest(".menu_image").fadeTo("fast", 0.6  );

            },
            function()
            {
             $("a[href='" + $(this).attr("href") + "']").closest(".menu_image").fadeTo("fast", 0  );

            });


   }//function

);
