
		$(document).ready(
		
		function() {
			
			$("a.inline1").fancybox({
		'width'				: '75%',
		'height'			: '100%',
        'autoScale'     	: false,
		'overlayColor'      : '#333333',
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'hideOnContentClick': true
	});
	
	$("a.please").fancybox({
    
});

	
	
			
			$("a.inline2").fancybox({
				'titlePosition'		: 'inside',
				'overlayColor'      : '#333333',
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'elastic',
				'speedIn'		:	600, 
				'speedOut'		:	200, 
				'overlayShow'	:	true,
				
				'autoScale'			: true,
				
				'overlayOpacity'	: .7
			});

			$("a.inline3").fancybox();

			$("#iframe").fancybox({
		'width'				: '75%',
		'height'			: '100%',
        'autoScale'     	: false,
		'overlayColor'      : '#333333',
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
       
		'type'				: 'iframe'
			
	});
	
	
	$("a.generic").fancybox({
		'width'				: '100%',
		'height'			: '100%',
        'autoScale'     	: false,
		'overlayColor'      : '#333333',
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
       
		'type'				: 'iframe'
			
	});
	
	$("a.narrow").fancybox({
		'width'				: '70%',
		'height'			: '100%',
        'autoScale'     	: false,
		'overlayColor'      : '#333333',
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
       
		'type'				: 'iframe'
			
	});
	
	$("a.medium").fancybox({
		'width'				: '85%',
		'height'			: '100%',
        'autoScale'     	: false,
		'overlayColor'      : '#333333',
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
       
		'type'				: 'iframe'
			
	});
	
	
		});
		
		





$(document).ready(
    function()
    {
            $("#showme").click(function() {
                $("#happy").toggle("slow");
				
            });
			
		 $("#showme2").click(function() {
                
				$("#slavery").toggle("slow");
            });	
			
			
			
});

