// JavaScript Document
        var imgs = [
		'images/promociones/ocho/big1.png',
		'hazchuza/images/cocacola/big1.png',
		'images/promociones/come-y-juega/big-corona.png',
		'images/promociones/club-AMF/big1.png',		
        'images/promociones/happyFour/big.png',
        'images/promociones/fiestas/big0.png',
        'images/promociones/come-y-juega/big1-tecate.png',
        'images/promociones/bebidas-alimentos/big1.png',
        'images/promociones/Feb14/big1.png'
		];
        var cnt = imgs.length;


			$(function() {
				   setInterval(Slider, 6000);
			});

		function Slider() {
			$('#imageSlide').fadeOut("fast", function() {
			   $(this).attr('src', imgs[(imgs.length++) % cnt]).fadeIn("fast");
			});
        }
