function quickHelpOn() {
$(document).ready(function() {
$(".global-overlay").height($(document).height());
$('.main .left-sidebar,.main .body').css('visibility','hidden');
$('.help-box .notes').show();
$(".global-overlay").slideDown('slow', function() {
$(".help-overlay").show();
$(".help-overlay").css('left');
$('.help-overlay').animate({height:590},800, function() {
$('.help-box .notes').fadeIn(750);
});
});
});
}
function quickHelpOff() {
$(document).ready(function() {
$('.main .left-sidebar,.main .body').css('visibility','visible');
$('.clickHere').stop().hide();
$(".global-overlay").stop().hide();
$(".closeBtn").stop().hide();
$(".help-overlay").stop().height(0);
$(".help-overlay-ru").stop().hide();
$(".help-overlay-ru").stop().height(0);
$(".clickHereru").stop().hide();
$(".clickHereru").stop().height(0);
$('#fullSize').stop().hide();
});
}

function englishrussian(objDivID) {
if(document.getElementById('divturbocontent').className=='help-overlay')
            {
                document.getElementById('divturbocontent').className = 'help-overlay-ru';
                document.getElementById('divturbobtn').className = 'input.turboBtnru';
                document.getElementById('helpoff').className = 'input.turboBtnNotNowru';
                document.getElementById('divbuynowbtn').className = 'input.buyNowru';
                document.getElementById('language').className = 'languageuk';
            }
            else
            {
                document.getElementById('divturbocontent').className = 'help-overlay';
                document.getElementById('divturbobtn').className = 'input.turboBtn';
                document.getElementById('helpoff').className = 'input.turboBtnNotNow';
                document.getElementById('divbuynowbtn').className = 'input.buyNow';
                document.getElementById('language').className = 'languageru';
            }
} 
