$(document).ready(function(){
    $('.leftmenu .bpun').hover(
        function() {
            $(this).children('ul').stop(true, true);
            $(this).children('ul').slideDown(200);
//            $(this).children('ul').css("filter","progid:DXImageTransform.Microsoft.gradient(enabled='true', startColorstr=#ccd6dcd9, endColorstr=#ccd6dcd9)");
            $(this).children('ul').css("filter","progid:DXImageTransform.Microsoft.gradient(enabled='true', startColorstr=#ccd6dcd9, endColorstr=#ccd6dcd9)");
        },
        function() {            
            $(this).children('ul').delay(200).slideUp(200); 
            $(this).children('ul.display').stop(true, true);
        }
    );    
});

