jQuery.noConflict();
var j$ = jQuery;

j$(function(){
	j$('a.external').not(j$('a:has(img)')).append('<img src="/common/img/ico_external_01.gif" alt="" width="10" height="9" class="externalIcon" />');
	j$('a.external').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
});

j$(function(){
	j$("ul.includeLinkPDF a[href$='.pdf']").append('<img src="/common/img/ico_pdf_01.gif" alt="" width="11" height="11" class="pdfIcon" />');
	j$("ul.includeLinkPDF2 a[href$='.pdf'] .newsTitle").append('<img src="/common/img/ico_pdf_01.gif" alt="" width="11" height="11" class="pdfIcon" />');
});

j$(function(){
	var e = j$('.setLastChild');
	jQuery.each(e, function(){
		var lastElement = j$(this).children('*:last');
		lastElement.addClass('lastChild');
	});
});

j$(function(){
	j$("#breadcrumbs").clone().attr("id","footerBreadcrumbs").appendTo("#footerBreadcrumbsWrapper");
});
