/* ********* drop down menu Java script code - start **********/
sfHover = function()
{
 var sfEls = document.getElementById('menu').getElementsByTagName('LI');
 
 for (var j=0; j<sfEls.length; j++)
 {
  sfEls[j].onmouseover=function()
  {
   this.className+=' over';
  }
  sfEls[j].onmouseout=function()
  {
   this.className=this.className.replace(new RegExp(' over\\b'), '');
  }
 } 
}
/* ********* drop down menu Java script code � end  **********/


function docReady() {
	if ( !document.getElementById('footer') ) {
		setTimeout(docReady, 333);
	} else {
		sfHover();
		//makeColumnsSameHeight();
		if ( imageCount > 0 ) runSlideShow();
	}
}
docReady();

