 /***************************
  * ART PAGE SCRIPT
****************************/

$(document).ready(function() {

    

   /* $(".video_home").hover(
        function(){
            //$(".video_home").stop(true,true).animate({"backgroundColor":"#000"});
            $(".video_home").css("background","#000");
            $(".video_home_descr").show();
        },
        function(){
            $(".video_home").css("background","transparent");
            $(".video_home_descr").hide();
        }
    );*/

    $(".image_home").hover(
        function(){
            $(".image_home").css("background","#000");
            $(".image_home_descr").show();
        },
        function(){
            $(".image_home").css("background","transparent");
            $(".image_home_descr").hide();
        }
    );

    $(".image2_home").hover(
        function(){
            $(".image2_home").css("background","#000");
            $(".image2_home_descr").show();
        },
        function(){
            $(".image2_home").css("background","transparent");
            $(".image2_home_descr").hide();
        }
    );

    $(".image3_home").hover(
        function(){
            $(".image3_home").css("background","#000");
            $(".image3_home_descr").show();
        },
        function(){
            $(".image3_home").css("background","transparent");
            $(".image3_home_descr").hide();
        }
    );

    $(".image4_home").hover(
        function(){
            $(".image4_home").css("background","#000");
            $(".image4_home_descr").show();
        },
        function(){
            $(".image4_home").css("background","transparent");
            $(".image4_home_descr").hide();
        }
    );
});
