/* inicio define a classe a ser usada em funcao da resolucao */
var resolution = window.screen.width;
var sufixoImagem = '';
	if (resolution<=800){
		document.body.className += 'screen800';
		sufixoImagem = 's';
	}
	if ((resolution>800)&&(resolution<=1024)){
		document.body.className += 'screen1024';
	}
/* Fim define a classe a ser usada em funcao da resolucao */



/* Inicio funcao para fix do flicker no IE6 */
    (function (){
	var  mflick = document.uniqueID /*IE*/
	&& document.compatMode  /*>=IE6*/
	&& !window.XMLHttpRequest /*<=IE6*/
	&& document.execCommand ;
	
	try{
		if(!!mflick){
			mflick("BackgroundImageCache", false, true) /* = IE6 only */ 
		}
		
	}catch(oh){};
})();
/* Fim funcao para fix do flicker no IE6 */



