﻿(function($) {
    $('html').addClass('js');
})(jQuery);

jQuery(document).ready(function($){
//$(document).ready(function(){

	$('html').removeClass('js');

	// Overlay
	$("a.overlay").fancybox({
		'overlayOpacity'		: 0.75,
		'overlayColor'			: '#000',
		'titleShow'				: false,
		'speedIn'				: 800
	});
	
	//Overlay for YouTube vids
	$("a.overlay-youtube").click(function() {
		$.fancybox({
				'overlayOpacity': 0.75,
				'overlayColor'	: '#000',
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 680,
				'height'		: 495,
				'speedIn'		: 800,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
					'wmode'				: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
		
});


