jQuery(document).ready(function(){
    
    jQuery("a.downloadButton").click(function(){
        $.ajax({
		      url:"createXLS.php", 
            //url: "/public/price.php",
            type: "GET",
            error: function(data){
                alert("Нет данных в каталоге.");
            },
            success: function(){
               document.location.href = "createXLS.php" ;
			   // document.location.href = "/public/price.php";                    
            }
        });
        return false;
    });

// анимация меню на главной
jQuery('.mainBlockIndexMenu > li > a').hover(function(){
	
	jQuery(this).prev().css('visibility','visible') .css('display','none');
	jQuery(this).prev().fadeIn(600);
	}, function(){
		jQuery(this).prev().fadeOut(600);
		setTimeout(function(){jQuery(this).prev().removeAttr('style');}, 600);
		});


// таблица-зебра
if (jQuery('table').length)
	{
		jQuery('tr:odd > td').css('background','#efedea');
	};

// активация lightbox
if (jQuery(".mainBlockContentCenterGallery").length)
{
	jQuery('.mainBlockContentCenterGallery > li > span > a').lightBox();
};

// замена селектов

var params = {
		changedEl: "select",
		visRows: 5,
		scrollArrows: true
	}
	cuSel(params);
	

});

