jQuery('a[href=#]').click(function(){return false;}); // Prevent # links from jumping to top of page

jQuery('a[href*="webapp.limolink.com/RezLinkWeb/Login.aspx"]').live('click',function(){
	_gaq.push(['_trackPageview', '/webapp-login/']);
});

jQuery(document).ready(function(){
	jQuery('.cycle').cycle({
		fx: 'fade',
		easing: 'easeInOutSine',
		timeout: 5000,
		next: '.cycle',
		pause: 1
	});
});

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() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
