$(document).ready(function(){
	$('a[rel*=external]').attr('target', '_blank');
	$('a[rel*=tag]').attr('target', '_blank');
});
if (top!= self){  
 if (location){ 
	 top.location.replace(self.location.href) 
 }else{ 
	 top.document.location.replace(self.document.location.href); 
 }
}
$(document).ready(function(){ 
	$.extend($.fn.disableTextSelect = function() {return this.each(function(){if($.browser.mozilla){$(this).css('MozUserSelect','none');}else if($.browser.msie){$(this).bind('selectstart',function(){return false;});}else{$(this).mousedown(function(){return false;});}});});
	$(document).bind("contextmenu",function(e){return false;}); 
	$('body').disableTextSelect();//No text selection on elements with a class of 'noSelect'
});