$(document).ready(function() {
	$('#image').cycle({ 
		fx:    'fade', 
		speed:  2500 
	});	
 
	$("img").lazyload();
 
	$("a.foto").fancybox({
		'titleShow': true,
		'titlePosition' : 'inside'
	});
	
	$("a.last_imgs").fancybox({
		'titleShow': true,
		'titlePosition' : 'inside'
	});
	
	$(".textfield").click(function(){
		$('body').find('.active').removeClass('active');
		$(this).addClass('active', 1000);
	});
	
	$(".email").click(function(){
		$('body').find('.active').removeClass('active');
		$(this).addClass('active', 1000);
	});
	
	$(".textarea").click(function(){
		$('body').find('.active').removeClass('active');
		$(this).addClass('active', 1000);
	});
});

