﻿/**
 * 
 * Script para main
 * @author Intera
 * 
 */

var Main = {
	
	init: function() {
		Main.setBackground();
	},
	
	
	setBackground: function() {
		$('div.links ul li:first-child a').addClass('localizacao');
		$('div.links ul li:last-child a').addClass('cadastre');
		$('div.links ul li:last-child').addClass('last');
		
		$('ul.dropdown li:first-child').addClass('first');
		$('ul.dropdown li:last-child').addClass('home');
		$('ul.dropdown ul li:last-child').removeClass('home');
		
		
		if($.browser.msie) {
			$('div#headerimg h1 a').addClass('pngfix');
			$('div.computers').addClass('pngfix');
			$('ul.blogroll li a').addClass('pngfix');
			$('div.aplicacoes p.ilustra').addClass('pngfix');
			$('div#footer span.logo').addClass('pngfix');
			$('div.powered-by a').addClass('pngfix');
			$('ul.dropdown').addClass('pngfix');
		}
		
		
		
		//$('ul.dropdown ul li:last-child').removeClass('home');
		//$('ul.dropdown ul li:last-child').removeClass('home');
		
		
		
		$('div#footer ul li:last-child').addClass('last');
	}
	
	
};

$(function(){ Main.init(); });
