$().ready(function() {
	$('.mexenlaces').css('height','0px');
	$('.mexenlaces').css('padding','0px');
	$('.mexenlaces').css('overflow','hidden');
	$("#bannerpagos .banner").hide();
	$("#bannerpagos .tab").mouseenter(runEffect);
	$("#bannerpagos .banner").mouseleave(runEffectHide);
	
	
	//run the currently selected effect
		function runEffect(){
			//most effect types need no options passed by default
			var options = {};
			//run the effect
			$("#bannerpagos .banner").show('slide',options,500);
			$("#bannerpagos .tab").hide();
		};
		
		function runEffectHide(){
			setTimeout(function(){
				var options = {};
				$("#bannerpagos .banner").hide('slide',options,700);
				setTimeout(function(){
					$("#bannerpagos .tab").show();
				}, 710);
			}, 1000);
		};
		
		//callback function to bring a hidden box back
		function callback(){
			
		};
		
		function tab(){
				$("#bannerpagos .tab").show();
		};
		
		$(".feria-de-descuentos").fancybox({
				'autoScale'			: false,
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});
		
		
		$(".visitartienda").fancybox({
				'autoScale'			: false,
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});
			$("a.proveedores_link").fancybox({
				'autoScale'			: false,
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});




});
