/*
 * CCTS custom jQuery functions
 *
 * Copyright (c) 2009
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-07-20
 * Revision: 1
 */

$(document).ready(function(){
	$('a[rel^="external"]').attr("target", "_blank");
	$(':last-child').addClass("last-child");
});
