// JavaScript Document
	$(document).ready(function() {
		$('.enter_button,.home_1,.home_2,.home_3,.home_4,.photos_index_1,.photos_index_2,.photos_index_3,.video_index_1,.video_index_2,.video_index_3,.book_1,.book_2,.book_3,.fb_button').append('<span class="hover"></span>').each(function () {
	  		var $span = $('> span.hover', this).css('opacity', 0);
	  		$(this).hover(function () {
	    		$span.stop().fadeTo(400, 1);
	 		}, function () {
	   	$span.stop().fadeTo(400, 0);
	  		});
		});
	});
