 $(document).ready(function() {
	$('a.more').corners('8px');
		
	
	$('.home_images_box').cycle();
	
	 });
	 
	 
	 /* --------------------------------
	 For Suckerfish Menus
----------------------------------- */
sfHover = function() {
   var sfEls = document.getElementById("nav").getElementsByTagName("li");
    for (var i=0; i<sfEls.length; i++) {
        sfEls[i].onmouseover=function() {
            this.className+=" sfhover";
        }
        sfEls[i].onmouseout=function() {
            // **** WAS THIS ****
            // this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
            // **** Changed to this setTimeout setup ****
            var t = this;
            setTimeout(function() {
                t.className=t.className.replace(new RegExp(" sfhover\\b"), "");
            }, 10);
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
