// Name: FancyBox
	
	$(document).ready(function() {
		$("a[rel=group]").fancybox({
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'titlePosition' 	: 'over',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
	});

// --------------------------------------------------

// Name: CUFON
	
	Cufon.set('fontFamily', 'Gill Sans MT').replace('.menu li a, h1, h2', {hover: true});

// --------------------------------------------------

// Name: Blur Anchors

	function blurAnchors(){
		if(document.getElementsByTagName) {
			var a = document.getElementsByTagName("a");
			//collect all anchors A
			for(var i = 0; i < a.length; i++){
				// mouse onfocus, blur anchors
				a[i].onfocus = function(){this.blur();};
			}
		}	
	}
	window.onload = blurAnchors; 
	
// --------------------------------------------------
