jQuery.noConflict();

function displayNot(containerVar, cssVar) {
 var str = jQuery(containerVar).html()
 jQuery('.REboxWhiteContent').html(str);
 jQuery('.REboxWhiteContent').removeClass(cssVar);
}

function display(containerVar, cssVar) {
 var str = jQuery(containerVar).html()
 jQuery('.REboxWhiteContent').html(str);
 jQuery('.REboxWhiteContent').addClass(cssVar);
} 

jQuery(document).ready(function() {
  var str = jQuery('.standard').html()
  jQuery('.REboxWhiteContent').html(str);
  
  jQuery('#banner').show().cycle({
    fx:      'fade',
    timeout:  10000,
    speed:    4000
  });
});

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
	
	if (sfEls.length>0) {
    for (var i=0; i<sfEls.length; i++) {
  		sfEls[i].onmouseover=function() {
  		  
  			this.className+=" sfhover";
  			// alert (this.className);
  		}
  		sfEls[i].onmouseout=function() {
  			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
  		}
  	}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
