// JavaScript Document
function unhide(divID) {
  var item = document.getElementById(divID);
  if (item) {
    item.className=(item.className=='hidden')?'unhidden':'hidden';
  }
}
/* ----------------------------------- */


function showhide(div_ID) {						//Toggle Show / Hide the DIV (div_ID = numbers or 'text')
 var el = document.getElementById(div_ID);
 el.style.display = (el.style.display != 'none' ? 'none' : '' );
}
/* ----------------------------------- */



/* 4 winners pages */
function unhide(divID) {
  var item = document.getElementById(divID);
  if (item) {
    item.className=(item.className=='hidden')?'unhidden':'hidden';
  }
}
/* ----------------------------------- */


<!--swap image on hoover (http://jdstiles.com/java/hoverchangeimage.html)-->
function showMainHall(q){ 
document.getElementById('logoMainHall').setAttribute('src','images/lobby/thumbs/'+q+'.jpg') 
} 

function showSlots(q){ 
document.getElementById('logoSlots').setAttribute('src','images/lobby/thumbs/'+q+'.jpg') 
} 

function showInstant(q){ 
document.getElementById('logoInstant').setAttribute('src','images/lobby/thumbs/'+q+'.jpg') 
} 

function showCasino(q){ 
document.getElementById('logoCasino').setAttribute('src','images/lobby/thumbs/'+q+'.jpg') 
} 




