var $j = jQuery.noConflict();
$j('document').ready(function() 
{
	/* ======================================================================================================================================================================================================== */
	/* PNG IE FIX */
	
	// http://docs.jquery.com/Tutorials:PNG_Opacity_Fix_for_IE6
});
   
   
/* ======================================================================================================================================================================================================== */
/* RETIRA ACENTOS À STRING */

function unformatString(texto) {
	texto = texto.toLowerCase();
	texto = str_replace(texto, ".", "");
	texto = str_replace(texto, " ", "-");
	texto = str_replace(texto, "´", "");
	texto = str_replace(texto, "'", "");
	texto = str_replace(texto, "à", "");
	texto = str_replace(texto, "â", "");
	texto = str_replace(texto, "ä", "");
	texto = str_replace(texto, "æ", "");
	texto = str_replace(texto, "è", "");
	texto = str_replace(texto, "ê", "");
	texto = str_replace(texto, "ì", "");
	texto = str_replace(texto, "î", "");
	texto = str_replace(texto, "ð", "");
	texto = str_replace(texto, "ò", "");
	texto = str_replace(texto, "ô", "");
	texto = str_replace(texto, "ö", "");
	texto = str_replace(texto, "ø", "");
	texto = str_replace(texto, "ú", "");
	texto = str_replace(texto, "ü", "");
	texto = str_replace(texto, "á", "");
	texto = str_replace(texto, "ã", "");
	texto = str_replace(texto, "å", "");
	texto = str_replace(texto, "ç", "");
	texto = str_replace(texto, "´", "");
	texto = str_replace(texto, "é", "");
	texto = str_replace(texto, "ë", "");
	texto = str_replace(texto, "í", "");
	texto = str_replace(texto, "ï", "");
	texto = str_replace(texto, "ñ", "");
	texto = str_replace(texto, "ó", "");
	texto = str_replace(texto, "õ", "");
	texto = str_replace(texto, "ù", "");
	texto = str_replace(texto, "û", "");
	texto = str_replace(texto, "ý", "");
	texto = str_replace(texto, "ÿ", "");
	return texto;
}

function str_replace(haystack, needle, replacement) {
	var temp = haystack.split(needle);
	return temp.join(replacement);
}
	
