﻿/**
	GeoIncorp - Portal (GeoIncorp) v: 0.1
	Developer(s):
		+ Leandro Mancini (leandro@neotix.com.br)
*/

var estrutura = {
	init: function(){
		$('.cabecalho ul.menu > li').neoHoverMenu().bind('click', function(){
			location.href = $(this).find('a').attr('href');
		});
		
	}
};

var trace = function(params){
	try{
		console.log(params);	
	}catch(e){};
}


$(document).ready(estrutura.init);
