		$(document).ready(function() {
			$("a#picture").fancybox({
				'overlayColor'		: '#3d3d3a',
				'overlayOpacity'	: '0.8',	
				'transitionIn'		: 'swing',	
				'transitionOut'		: 'swing',	
				'hideOnOverlayClick': true,
				'autoScale'			: true,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'enableEscapeButton': 'true',
				'type'				: 'image'
			});
		});

$(function () {
		var img = new Image();        
		$(img).load(function () {            
			// $(this).css('display', 'none'); // .hide()
			$(this).hide();           
			$('#loader').removeClass('loading').append(this);            
			$(this).fadeIn();        
		}).error(function () {            // notify the user that the image could not be loaded        
		}).attr('src', 'images/menu_background/random.php'); 
});
