$(document).ready(function() {
   $("a.gallery").fancybox(
			{						
          	"overlayOpacity" : 0.9,		
			});
});
		$(function() {
			$(".arrow")
			.find("span")
			.hide()
			.end()
			.hover(function() {
				$(this).find("span").stop().fadeIn();
			}, function() {
				$(this).find("span").stop().fadeOut();
			});
		});
		$(function() {
			$(".arrow1")
			.find("span")
			.hide()
			.end()
			.hover(function() {
				$(this).find("span").stop().fadeIn();
			}, function() {
				$(this).find("span").stop().fadeOut();
			});
		});
		$(function() {
			$(".arrow2")
			.find("span")
			.hide()
			.end()
			.hover(function() {
				$(this).find("span").stop().fadeIn();
			}, function() {
				$(this).find("span").stop().fadeOut();
			});
		});
		$(function() {
			$(".arrow3")
			.find("span")
			.hide()
			.end()
			.hover(function() {
				$(this).find("span").stop().fadeIn();
			}, function() {
				$(this).find("span").stop().fadeOut();
			});
		});
		$(function() {
			$(".arrow4")
			.find("span")
			.hide()
			.end()
			.hover(function() {
				$(this).find("span").stop().fadeIn();
			}, function() {
				$(this).find("span").stop().fadeOut();
			});
		});

