/*
	Scripts used for this theme.
	This file Requires jQuery to opperate.
*/

$(document).ready(function() {

	// Return to top
	$('#top a').click(function(){
	     $('html, body').animate({scrollTop: '0px'}, 300);
	     return false;
	});
	
	// Fancybox the YT video
	$('a#fancy').fancybox({ 'overlayOpacity' : .8 });
	$('a.enlarge').fancybox({ 'overlayOpacity' : .8 });
	
});
