$(document).ready(function () {

    /* IE functions*/
    if ($.browser.msie) { 
        $("li:last-child").addClass("last-child");
		$("tr:last-child").addClass("last-child");
		$(".startDate span:last-child").addClass("last-child");
		$(".subscribe p:last-child").addClass("last-child");
    };
	$('a.ext').click(function () {
	    window.open($(this).attr('href'));
	    return false;
	});
});

