init = function () {       
    
    if (typeof bodyBackground != 'undefined' && bodyBackground != '') {
        setBackgroundImg(pathToIncludes + "/" + xmlPath + "/" + gender + "/" + bodyBackground);
    }
    
    $('#fading-div').css({opacity:0});
    $('#maintoolbar .selected').moveToFront();
    $('#gender-navigation').moveToFront();
    
    $('#menu').bind('mouseleave', function(){
        $('#fading-div').queue("fx", []);
        $('#fading-div').stop();
        $('#maintoolbar .selected').moveToFront();
        $('#gender-navigation').moveToFront();
        $('#fading-div').fadeTo(animationDuration, 0);
    });
    
    $('#menu').bind('mouseenter', function(){
        $('#fading-div').queue("fx", []);
        $('#fading-div').stop();
        $('#fading-div').fadeTo(animationDuration, 1, function(){
            $('#menu .clone-element').remove();
        });
    });
    
    if (!isIE6orLess()) {
		$('#scrpane').jScrollPane({scrollbarWidth: 5});
    } else {
    	$('#text').css({overflow:'auto'});
    }
    
}
