$(document).ready(function() {
	$('#rscSearchForm form').corner("bottom 8px");

	$('#content a').filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).after(' <img src="/common/images/linkicons/external.png" alt="external link" title="external link" class="extlink" />');

	$('#content a, body#index #sidebar a').filter(function() {
		$('a[href$=".pdf"]').not('a:has(img)').attr('class','pdflink').attr('title','Click to download file in PDF format');
		$('a[href$=".doc"]').not('a:has(img)').attr('class','doclink').attr('title','Click to download file in MS Word format');
		$('a[href$=".rtf"]').not('a:has(img)').attr('class','doclink');
		$('a[href$=".ppt"]').not('a:has(img)').attr('class','pptlink');
		$('a[href$=".xls"]').not('a:has(img)').attr('class','xlslink');
	});

});

