$(document).ready(function()
	{
		$('#imagenes').cycle({
				prev 	: '#imagen-anterior',
				next 	: '#imagen-siguiente',
				timeout : 4000,
				pause 	: 1,
				before 	: changeTitle
			});
	});

function changeTitle()
	{
		var title = $(this).find('img').attr('alt');
		var href = $(this).attr('href');
		
		$('#titulo-imagen').text(title).attr('href', href);
	}
