var Inicial = {
	
	show: function(e) {
		
		var src = e.currentTarget
		src.parentNode.className = 'over'
		
		var id = src.getAttribute('href')
		id = id.substr(id.lastIndexOf('=') + 1)
		
		var oFoto = DOM.getElem('foto')
		if (oFoto) oFoto.className = 'foto ' + id
		
	},
	
	hide: function(e) {
		
		var src = e.currentTarget
		src.parentNode.className = 'foto'
		
	},
	
	init: function() {
		
		var oConteiner = DOM.getElem('seguranca')
		var oLinks = oConteiner.getElementsByTagName('ul')[0].getElementsByTagName('a')
		
		DOM.mlisten('mouseover', oLinks, Inicial.show); DOM.mlisten('focus', oLinks, Inicial.show)
		DOM.mlisten('mouseout', oLinks, Inicial.hide); DOM.mlisten('blur', oLinks, Inicial.hide)

	}
}		

// Efeito título Notícias
$(document).ready(function(){
													 
	function fadeIn() { $("div#d-noticias h2").animate({ backgroundColor: "#DB5300" }, "slow", "linear", fadeOut) }
//	function fadeOut() { $("div#d-noticias h2").animate({ backgroundColor: "gold" }, "slow", "linear", fadeIn) }
		
	fadeOut()

});