function elementMorphHide(){
top.document.getElementById('colonna-dx').style.display='none';
$('colonna-sx').morph('width:940px;');
top.document.getElementById('show-hide').innerHTML="<a href=\"#\" onClick=\"javascript:elementMorphShow();\"><small>Visualizza colonna</small></a>";
}
function elementMorphShow(){
$('colonna-sx').morph('width:448px;');
top.document.getElementById('show-hide').innerHTML="<a href=\"#\" onClick=\"javascript:elementMorphHide();\"><small>Nascondi colonna</small></a>";
setTimeout("Effect.BlindDown('colonna-dx')",1000);
}
function elementShowFirst(){
document.getElementById('merchant-first').style.background='#FCF0BE';
document.getElementById('cashback_1').style.background='';
}
function elementHideFirst(){
document.getElementById('merchant-first').style.background='#E5EDFE';
document.getElementById('cashback_1').style.background='#e5edfe';
}
function elementShowThis(num){
document.getElementById('tasto_off_'+ num).style.display='none';
document.getElementById('tasto_on_'+ num).style.display='inline';
document.getElementById('cashback_'+ num).style.background='#e5edfe';
}
function elementHideThis(num){
document.getElementById('tasto_on_'+ num).style.display='none';
document.getElementById('tasto_off_'+ num).style.display='inline';
document.getElementById('cashback_'+ num).style.background='#D5EFBA';
}
function elementCashBackShow(num){
document.getElementById('cashback_'+ num).style.background='#e5edfe';
}
function elementCashBackHide(num){
document.getElementById('cashback_'+ num).style.background='#D5EFBA';
}

