$("document").ready(function() {
	$('.backtotop').click(function(){
		$('html, body').animate({scrollTop: 0}, 500);
	});
	$('.banner').click(function(){
		$('html, body').animate({scrollTop: $("#featured").offset().top-15}, 1000);
	});
	
	height = jQuery(document).height();
	if (height > 1000) {
		$('.backtotop').show();
	}	else {
		$('.backtotop').hide();
	};
	
	$("a#subscribelink").fancybox({
		'type' : 'iframe',
		'overlayColor' : '#fff',
		'overlayOpacity' : 0.5,
		'autoScale' : 'true',
		'padding' : 0,
	});
});
