/*
*
*   (c) 2009, Sergey Ganzal Ivanov
*   brainlessG@gmail.com
*
*/
function toggle_Overlay ()
{
    if( $( "#OverLay" ).css( "display" ) == "none" )
    {
        show_Overlay();
    }
    else
    {
        hide_Overlay();
    }
}

function show_Overlay ()
{
    $( "#OverLay" ).slideDown("slow");
}

function hide_Overlay ()
{
    $( "#OverLay").slideUp("slow");
}