$(document).ready(function(){
	$('.CycleContainerHome').cycle({
		fx:			'fade',
		easing:		'circEaseOut',
		slideExpr:	'div',
		pause:		1,
		timeout:	5000, 
		speed:		1100,
		before: function () {
			$('.PhotoBar').html($(this).find('span[rel=tapa]').html());
			$('.ArticleTitle').html($(this).find('span[rel=title]').html());
			$('.ArticleDescription').html($(this).find('span[rel=text]').html());
		},
		after: function () {
			$('.CycleContainerHome').show();
		}
	});

	$('.CycleContainer').cycle({
		fx:			'fade',
		easing:		'circEaseOut',
		slideExpr:	'div',
		pause:		1,
		timeout:	5000, 
		speed:		1100,
		after: function () {
			$('.CycleContainer').show();
		}
	});
});
