function portada(){
	$('#thumbs').cycle({
		timeout: 3000,
		speed: 500,
		pause: false,
		random: true
	});
	$('#fotoBoxCol').hover(
		function(){
			$(this).addClass('hover');
		},
		function(){
			$(this).removeClass('hover');
		}
	).click(function(){
		/*document.location = $(this).find('a').attr('href');*/
	});
	//
}

$(document).ready(function(){
	portada();
});
