$(document).ready(function() { 						   
    // photo gallery function
    $('#s3').cycle({ 
	fx:     'fade', 
	speed:  1200, 
	timeout: 556500, 
	next:   '#next', 
	prev: '#prev'
    });
    // lightbox function
    $("a[rel=example_group]").fancybox({
	'overlayShow'	: true,
	'overlayColor'  : '#000',
	'overlayOpacity': '1',
	'showNavArrows' : true,
	'transitionIn'	: 'fade',
	'transitionOut'	: 'fade',
	'type' : 'image'
    });
    initMenus();       /* Defined in menu.js */
});    

$(window).load(function() {
    $('#s3').fadeIn('slow');
});


