function thumbsLeft(){
next = current-1;
if (next == 0) jQuery('#thumb-left>div').hide();
jQuery('#thumb-right>div').show();
jQuery('#section'+current).hide('fast',function(){jQuery('#section'+next).show('fast')});
current = next;
}

function thumbsRight(){
next = current+1;
if (next == sections) jQuery('#thumb-right>div').hide();
jQuery('#thumb-left>div').show();
jQuery('#section'+current).hide('fast',function(){jQuery('#section'+next).show('fast')});
current = next;
}

function productsThumbsLeft(){
next = productcurrent-1;
if (next == 0) jQuery('#product_slider_left>div').hide();
jQuery('#product_slider_right>div').show();
jQuery('#productsection'+productcurrent).fadeOut('fast',function(){jQuery('#productsection'+next).fadeIn('fast')});
productcurrent = next;
}

function productsThumbsRight(){
next = productcurrent+1;
if (next == productsections) jQuery('#product_slider_right>div').hide();
jQuery('#product_slider_left>div').show();
jQuery('#productsection'+productcurrent).fadeOut('fast',function(){jQuery('#productsection'+next).fadeIn('fast')});
productcurrent = next;
}
function setLanguage(lang){
jQuery('#language').attr('value',lang);
document.multilang.submit();
}