		$(document).ready(function(){
			$('A[rel="_blank"]').each(function(){
				if($(this).attr('rev') == 'link-01'){ 
					$(this).attr('target', '_blank');
				} else {
					$(this).click(function(){
						window.open($(this).attr('href'));
						return false;
					});
				}
			});
		});
