$(document).ready(function()
	{
		$('#slides2').cycle({
				prev 	: '#previous-slide2',
				next 	: '#next-slide2',
				timeout : 20000,
				pause 	: 1,
				speed	: 800,
				before 	: changeTitle2
			});
	});

function changeTitle2()
	{
		var title = $(this).find('img').attr('alt');
		var href = $(this).attr('alt');
		
		$('#slide-title2').text(title).attr('href', href);
	}
