$(document).ready(function(){
	$("a[href^='http://']").not("a[href*='sexy-galleries.net']")
						   .attr('rel','nofollow')
						   .add('#main a')
						   .click(function(){
							   window.open(this.href);
							   return false;
						   });
});