﻿jQuery.noConflict();
(jQuery(function(){
    
	jQuery(".conteudo a").each(function(){
		jQuery(this)
			.filter(function(){
				return this.href.match(/ImagemAmpliada.aspx/);    
			})
			.attr("rel","lightbox")
	});
	
	jQuery(".menu a, .menu-sup ul a, .sub-menu ul a, .menu-inf a").each(function(){
		jQuery(this)
			.filter(function(){
				return !this.href.match(/pwco/);
				//return !this.href.match(/localhost/);
			})
			.attr("target","_blank")
	});
	
}));