$("a[href='/news/redirect.aspx']").attr('href', '/whats-on/default.aspx');
$("#column2 .paging, .whatsontable .paging").remove();

$("ul li:first-child").addClass('first');
$("ul li:last-child, .news .item:last-child").addClass('last');

Cufon('nav>ul>li>a', {
	textShadow: '-1px -1px #a42118',
	hover: true
});
Cufon.now();


pg1 = $("#SearchResults .pagerSummary");
pg2 = $("#SearchResults ul.pager");

for(var i=0;i<pg1.length;i++){
	$(pg2[i]).remove();
	var r = $("<div class='paging'></div>");
	$(pg1[i]).replaceWith(r);
	r.append($(pg1[i]));
	r.append($(pg2[i]));
}

$('.cycle>ul>li,#column2 .news .item').css({
	opacity: 0
});
setTimeout(function() {
	$('#column2 .news').cycle({
		fx: 'scrollLeft',
		easing: 'easeOutExpo',
 		speed: 800,
		timeout: 9000,
		delay:  -9000
	});

	$('.sct-a>ul').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 8000,
		delay:  -8000
	});
	$('.sct-b>ul').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 8000,
		delay:  -7500
	});
	$('.sct-c>ul').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 8000,
		delay:  -7000
	});

	$('.cycle>ul>li,#column2 .news .item').css({
		opacity: 0
	});
});



