/**
 * TikiCMS
 * Copyright (C) 2009, Tiki Web Inteligente Ltda.
 * @requires jQuery 1.3.2 or latter
 *
 * $Id: application_controller_empreendimentos.js 28 2011-03-10 17:24:39Z caio $
 */

Application.Controller.Empreendimentos = (function() {

    // gambiarra enquanto não consigo mandar o objeto jQuery como argumento desta função
    var $ = jQuery;

    function init() {
		$('ul.int_nav li.acompanhe').hover(
			function() {
				$(this).children('a').addClass('mouseOver');
				$(this).children('ul').show();
			},
			function() {
				$(this).children('a').removeClass('mouseOver');
				$(this).children('ul').hide();
			}
		);
    }

    return {
        'init': init
    };
})();

