function init() {
	if($('.animation').size() > 0) {
		$('.animation').cycle({ 
    		fx:    'fade',
			speed: 900,
 		});
	}
	
	if($("#gallery").size() > 0)
	{
		$('#gallery a').lightBox({fixedNavigation:false});
	}
	
	if($("#drivers_gallery").size() > 0)
	{
		$('#drivers_gallery a').lightBox({fixedNavigation:false});
	}
	
	if($("#team_gallery").size() > 0)
	{
		$('#team_gallery a').lightBox({fixedNavigation:false});
	}
}

$(document).ready(function() {
	init();
});

