/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */



function dim_sidebar_init ()
{
    $('#left-sidebar .dimable').fadeTo(0, 0.50);
    $('#right-sidebar .dimable').fadeTo(0, 0.50);
    $('#left-sidebar').mouseenter(function() {
        $('#left-sidebar .dimable').fadeTo("fast", 1.00);
    });
    $('#right-sidebar').mouseenter(function() {
        $('#right-sidebar .dimable').fadeTo("fast", 1.00);
    });
    $('#left-sidebar').mouseleave(function() {
        $('#left-sidebar .dimable').fadeTo("fast", 0.50);
    });
    $('#right-sidebar').mouseleave(function() {
        $('#right-sidebar .dimable').fadeTo("fast", 0.50);
    });
}


