$(document).ready(function() {
		
	$("a#single_1").fancybox();
		
	$("a#single_2").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});
	
	$("a#single_3").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	
	$("a.group").fancybox({
		'hideOnContentClick': false
	});
	
$("a.youtube").fancybox({ // notice we changed a#youtube by a.youtube
    	'frameWidth': 830, 'frameHeight': 550, 'overlayOpacity':0.6,
    	'hideOnContentClick': false,
    	'callbackOnClose': function() { // finish the video after closing fancybox
        $("#fancy_content").empty();
        }
     }); 
	 
	 		
	$("a#formlogger").fancybox({ 
	'hideOnContentClick': false 
	});



});

$.fn.cycle.defaults.speed   = 1900;
$.fn.cycle.defaults.timeout = 8000;

$(function() {
    // run the code in the markup!
    $('#demos pre code').each(function() {
        eval($(this).text());
    });
});

$(function() {
            $("#1, #2, #3").lavaLamp({
                fx: "backout", 
                speed: 700,
                click: function(event, menuItem) {
                    return menuItem;
                }
            });
});