$("a[href='/news/redirect.aspx']").attr('href', '/news/default.aspx');
$("#column2 .paging.bottom").remove();

Cufon.replace('h1, h2');
Cufon.now();

$("ul li:first-child").addClass('first');
$("ul li:last-child").addClass('last');

$("a.prospectus").fancybox({
	'width'				: '40%',
	'height'				: '75%',
	'transitionIn'		: 'none',
	'transitionOut'	: 'none',
	'autoScale'			: false,
	'type'				: 'iframe'
});

pg1 = $("#SearchResults .pagerSummary");
pg2 = $("#SearchResults ul.pager");

for(var i=0;i<pg1.length;i++)
{
	$(pg2[i]).remove();
	//pg1.replaceWith("<div class='paging'>" + pg1.html() + pg2.html() + "</div>");
	var r = $("<div class='paging'></div>");
	$(pg1[i]).replaceWith(r);
	r.append($(pg1[i]));
	r.append($(pg2[i]));
}

