$(function() {
	// set opacity to nill on page load
	$("ul#menu span").css("opacity","0");
	// on mouse over
	$("ul#menu span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, "slow");
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, "slow");
	});
});

$(document).ready(function() { 
				$("a.bigpic").fancybox({
					'padding':0,
					'zoomSpeedIn': 500,
					'zoomSpeedOut': 500,
					'zoomSpeedChange': 700,
					'overlayShow': true,
					'overlayOpacity': 0.7,
					'centerOnScroll': false,
				}); 
			});
