(function($){			
	$Topo = {
		
		_constructor:function()
		{
			var me = this;
			me.initConfig();
			me.selectTopo();
		},
		
		selectTopo:function() {
			$("#topo .combotopo").hover(
				function() {
					if ($(this).hasClass("combo-cidade")) {
						$(this).css("background","url(../img/bg-select-topo-cidade.gif) no-repeat left top");	
					} else if ($(this).hasClass("combo-favoritos")) {
						$(this).css("background","url(../img/bg-select-topo-favoritos.gif) no-repeat left top");	
					} else if ($(this).hasClass("combo-visitadas")) {
						$(this).css("background","url(../img/bg-select-topo-visitadas.gif) no-repeat left top");	
					}
					$(this).find('ul').show();
				},
				function() {
					$(this).css("background","none").find('ul').hide();
				}
			);
		},
		
		initConfig:function()
		{
			
		}
		
	}
})(jQuery); 