if(jQuery) {
	$(function() {
		if(jQuery().supersleight) {
			$('.logo, #title').supersleight();
		}
		$('.footer li:first-child + li, .main td:first-child, .main tr:first-child').addClass('first');
		$('.main td:last-child, .main tr:last-child').addClass('last');
		
		$("a[href^=http]").each(
		    function() {
		    	if(this.href.indexOf(location.hostname) == -1)
		        $(this).attr('target', '_blank');
    		});
    		$("a[href$=pdf]").each(
		    function() {
			$(this).attr('target', '_blank');
    		});
		if(jQuery().lightBox) {
			$('.imageContainer a').lightBox();
		}
		$('.imageContainer a img').each(
			function() {
				var caption = $(this).attr('alt');
				$(this).parent().parent().append('<div class="caption">'+caption+'</div>');
			}
		);
		
		//handle partner bio Outtakes on IE
		if ($.browser.msie && $.browser.version < 8) {
			$(".sub blockquote").css("quotes", "none");
			$(".sub blockquote p:first-child:before").css("content", "none");
			$(".sub blockquote p:after").css("content", "none");
			$(".sub blockquote p").prepend("&#8220;");
			$(".sub blockquote p:last-child").append("&#8221;");
		}
		
	});
}