jQuery(document).ready(function($) {
	//Layout Improvments
	$('div#sidebar ul li:first').css('border-top','1px dotted #900');
	
	
		
	//Carousel
	$('ul.jcarousel-skin-slideshow').jcarousel({ scroll: 1 });
	$('ul.jcarousel-skin-programacao').jcarousel({
		vertical: true,
		scroll: 6
	});
	

	//Slideshow
	if ($('div#destaque p:first img').length >= 2) {
		//alert('!');
		$('div#destaque p img').wrapAll('<div id="cycle"></div>');
		//$('#destaque p:first img:last').after('</div>');
	}
	//Destaque
	if ($('div#troca p:first img').length >= 2) {
		$('div#troca p img').wrapAll('<div id="cycle"></div>');
	}

	$('div#cycle').cycle({
		fx: 'fade',
		speed: 500,
		pause: 1,
		timeout: 5000
	});
	//var qtd = $('#destaque p:first img').length;
	//alert(qtd);
		
	
	//Fancybox - ,'overlayShow': true
	$('a.fancybox').fancybox({ 'hideOnContentClick': true, 'overlayShow': true });
});