(function($){			
	$Menu2 = {

		_constructor:function()
		{
			var me = this;
			me.clientes_marca();
		},


		clientes_marca: function() {
			var $obj = $(".clientes_marca .mca_cliente");
			$obj.hover(
				function() {
					$obj.not($(this)).stop().animate({ opacity: .2 });},
					function() {
					$obj.not($(this)).stop().animate({ opacity: 1 }, {duration:3000});}
					
					)},
			
		}
		$(document).ready(function() {
		$('.mca_cliente')
			.click(
				function() {
				$(this).stop().animate({ opacity: 1 }, {duration:100});}
				);
			$('.mca_cliente')
			.hover(
				function() {
				$(this).stop().animate({ opacity: 1 }, {duration:100});}
				);
		});
})(jQuery);



