
	$.fn.equalHeights = function(px) {
		$(this).each(function(){
			var currentTallest = 0;
			$(this).children().each(function(i){
				if ($(this).height() > currentTallest) { currentTallest = $(this).height(); }
			});
			if (!px || !Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm(); //use ems unless px is specified
			// for ie6, set height since min-height isn't supported
			if ($.browser.msie && $.browser.version == 6.0) { $(this).children().css({'height': currentTallest}); }
			$(this).children().css({'min-height': currentTallest}); 
		});
		return this;
	};

	$(document).ready( function() {
		
		$("ul.sf-menu").superfish({ 
			pathClass:  'active',
			pathLevels: 2,
			autoArrows:  false
			
		}); 
		$("ul#nav li ul li:first-child").addClass("first");
		$("ul#nav li ul li:last-child").addClass("last");
		$("a[rel=fancy]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over'
				
			});
	}) ;