(function($){
	$(function(){
		$("a").live("click", function(event){
			if($(this).attr("href").substr(0,7) == "http://" && $(this).attr("target") != "_blank" && document.location.href.indexOf('carefree.') !== -1 && document.location.href.indexOf('carefreervresorts.') !== -1)
			{
				$(this).attr("target", "_blank");
			}
		});
	});	
})(jQuery);

