jQuery(document).ready(function($) {

	$("#footer-photo").cycle({ 
		timeout: 8000,
		speed: 1125,
		next: '#footer-photo', 
		pause: 1
	});
	
	$('a[rel|="gallery"]').fancybox({
		'overlayOpacity':0.6,
		'overlayColor':'#222',
		'transitionIn': 'fade',
		'transitionOut': 'fade',
		'titleShow': false
	//	'titlePosition': 'outside'
	});

});

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);
