$(document).ready(
	function() 
	{

		/*
		$("a.register").click(function() {
			$.fancybox({
				'width'	: 350,
				'href'	: this.href,
			});
			return false;
		});
		*/

		$('.calories').show();
		$('.loading').hide();
		$('.fancybox').fancybox();
		$('.fancybox-youtube').click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: 'none',
					'transitionOut'	: 'none',
					'title'			: this.title,
					'width'			: 660,
					'height'		: 490,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
					   	 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
				});
		
			return false;
		});
	}
);
