﻿$(function() {
$("#allsitecontainer dl .CaseListddOne").hover(function() {

$(this).children("div").css({ "top": "78px"});

        $(this).children("div").css({ "background-color": "#979797" })
        $(this).fadeIn(500).css({ "border": "solid 5px #979797" });

    }, function() {

    $(this).children("div").css({ "top": "130px" });
        $(this).css({ "border": "solid 5px #ffffff" });

    }
	);
    //	          $(this).next().css({"top":"130px"});
    // $(this).css({"background-color":"#ffffff"});
    //	

})
