var Func = {
	ShowTip: function(){
		$('ul#icons li p').hide().css({bottom:'50px'});
		$('ul#icons li').hover(function(){
			$(this).find('p').stop(true, true).animate({opacity: 'show', bottom: '60px'}, 'normal');
		},function(){
			$(this).find('p').stop(true, true).animate({opacity: 'hide', bottom: '50px'}, 'fast');
		});
	},
	Buble: function(){
		$('#buble').hide().css({top:'-70px', left: '50px'});
		$('#buble')
			.animate({opacity: 'show', top:'-98px', left:'50px'}, 800)
			.animate({top:'-98px', left:'50px'}, 5000)
			.animate({opacity: 'hide', top:'-80px', left:'50px'}, 500);
	}
}
$(function() {
	$('.remove').remove();
	$('.hide').hide();
	$('.show').show();
	Func.ShowTip();
	$('a.MenPidelo-Aqui').append('<span id="buble" class="hide">| Hasta 15% de descuento en la tasa por Internet</span>');
	Func.Buble();
	if ($.id('#MenCamiseta-chile')){$('#buble').remove();}
	$('#PideNoclient').click(function(){
		$('#LogClien').hide();
		$('#FormNoClient').fadeIn();
		return false;
	});
});
jQuery.extend({
	id : function(id) {
		var id = id.split('#');
		return document.getElementById(id[1])?true:false;
	}
});