$(function() {

	$('a.lightbox').lightBox(); // Select all links with lightbox class
	$('.cycle').cycle(); // Run "cycle" slideshow animation on class
	
});

$(document).ready(function(){

	$('.footer_image').hover(function() {
		$('.arrow').hide(); 
		$(this).children('.arrow').show();
	});
	
	$(".youtube").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});

	
});

$(window).load(function () {
	$('#loading').hide();
	$('#map_contents').fadeIn();
});


