$(document).ready(
    
    function()
    {
        $(".thumb").hover(
        function ()
        {
           if($("#bigpic").attr("src") == $(this).attr("src"))
           {
                
           }
           else
           {
                
                $("#bigpic").attr("src", $(this).attr("src"));
                

           }
           stop();

        },
        function ()
        {
        });

        $(document).ready(
    function()
    {
        $(".thumb").hover(
        function ()
        {
           if($("#bigpic").attr("src") == $(this).attr("src"))
           {

           }
           else
           {
                $("#bigpic").stop().animate({opacity: 0},1000);
                $("#bigpic").stop().attr("src", $(this).attr("src"));
                $("#bigpic").stop().animate({opacity: 1},1000);
           }
           stop();

        },
        function ()
        {
        });

    });
         function animation()
         {
         $("#bannerText").animate({opacity: "1", color: "white"}, 2000)
         $("#bannerText").animate({opacity: "0.2", color: "white"}, 2000)
         animation();
         }
         animation();

    });

