$(document).ready(function () { 		
	/*------------------------------------------------------------
		Aplica tags onclick (presente no rel) nos elementos com a class omniture-tag
	-------------------------------------------------------------*/
	$(".omniture-tag").each(function() {
		var clickTag = $(this).attr("rel");
		if(clickTag) {
			$(this).attr('onclick', clickTag)
		}
	});
});

