$(document).ready(function(){
	
	$("a",$("#maincontent")).filter(function() {
    return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank').addClass("external");
	
	l = location;
	l = l.pathname;
	l = l.split("/");
	t = l.length - 1;
	try{
		l = l[t];
		l = l.split(".");
		l = l[0];
		$("a[rel="+l+"]").addClass("active");
	}catch(e){
	
	}
});
