$(document).ready(function(){
	// fix positions for portrait / panoramic images
	$('.cycle .content-home img, .cycle .content img').each(function() {
		var width = ($(this).attr('width'));
		var height = ($(this).attr('height'));
		if(width < 870) {
			var marginLeft = ((870 - width) / 2);
			$(this).css('margin-left', marginLeft);
		}
		if(height < 580) {
			var marginTop = ((580 - height) / 2);
			$(this).css('margin-top', marginTop);
		}
	});
	$('.cycle .content-home').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 5000,
		cleartype: true,
		cleartypeNoBg: true
	});
	$('.cycle .content').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 5000,
		cleartype: true,
		cleartypeNoBg: true,
		pager: '.nav p',
		next: '.next',
		prev: '.prev'
	});
});
