$(document).ready(function(){
    $('.pngfix').pngFix();
    $("a#butshow").toggle(function () { 
        $("#but_left").animate({ marginLeft:"0"}, 500);
        $("#butshow").html("<img src='../../images/but_hide.gif' alt=''>");
    },
    function () {
        $("#but_left").animate({ marginLeft:"-226px"}, 500);
        $("#butshow").html("");
    });
    $("a#mes_butshow").toggle(function () { 
        $("#mes_but_left").animate({ marginLeft:"0"}, 500);
        $("#mes_butshow").html("<img src='../../images/but_hide.gif' alt=''>");
    },
    function () {
        $("#mes_but_left").animate({ marginLeft:"-226px"}, 500);
        $("#mes_butshow").html("");
    });
});
//setTimeout('$("#but_left").animate({ marginLeft:"0"}, 500); $("#butshow").html("<img src=\'../../images/but_hide.gif\' alt=\'\'>");', 5000)
function ShowImg(imgid)
{
    $('#'+imgid).show();
}
function HideImg(imgid)
{
    $('#'+imgid).hide();
}
