﻿google.setOnLoadCallback(function() {
	$('.first').cycle({ 
    fx:    'fade', 
    timeout:	8000,
    speed:  500,
		delay:	0
	});
	$('.second').cycle({ 
    fx:    'fade', 
    timeout:	8000,
    speed:  500,
		delay:	400
	});	
	$('.third').cycle({ 
    fx:    'fade', 
    timeout:	8000,
    speed:  500,
		delay:	800
	});	
	$('.fourth').cycle({ 
    fx:    'fade', 
    timeout:	8000,
    speed:  500,
		delay:	1200
	});	
	
	$('#pictures div div').hover(function(){
		$(this).find('span').animate({ bottom:'-1px' },{ queue: false, duration: 300 });
		}, function(){
		$(this).find('span').animate({ bottom:'-50px' },{ queue: false, duration: 300 });
	});
	
});