﻿jQuery(function( $ ){

$(document).ready( function() {

$(".products table  tr:odd").css("background-color", "#f5f1e5 !important");
$(".products table, .products table td, .products table tr").css("border", "1px solid #f5f1e5");


// ----- Анимация на главной странице -----
	
	$(".anim-prev, .anim-next, .anim-text, .next, .prev").hide();
	
	$("#slide").mouseover(function(){
		$(".anim-prev, .anim-next, .anim-text").fadeIn(200);
    });
	
	$("#slide").mouseleave(function(){
		$(".anim-prev, .anim-next, .anim-text").fadeOut(200);
    });

$("#anim-ul").cycle({ 
    prev:   '.anim-prev', 
    next:   '.anim-next', 
    speed: 1000,
    timeout: 3000,
    pause: 1
});

	
	
// ----- Награды компании -----
	
	$("#prizes").mouseover(function(){
		$(".prev, .next").fadeIn(200);
    });
	
	$("#prizes").mouseleave(function(){
		$(".prev, .next").fadeOut(200);
    });
	
    $(".diploms-main").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });

   /*$(".smallgal").jCarouselLite({
vertical: true,
visible: 6,
btnNext: ".carousel-up",
btnPrev: ".carousel-down"
    });*/
	
	
	
// ----- fancybox -----
	
	$("a[rel=external]").fancybox({
		'titlePosition' 	: 'over',
                'padding' : 0,
                'margin' : 0,
	'overlayColor':	'#0975a8',
	'overlayOpacity': 0.8
	});
	
	$("#fancybox-outer").mouseover(function(){
		$("#fancybox-title").fadeOut(0);
    });
	
	$("#fancybox-outer").mouseleave(function(){
		$("#fancybox-title").fadeIn(0);
    });
	
	
// ----- Табы -----

	$("#table2").hide();
	$("#mpa1").addClass("visited");
	
	$("#mpa1").click(function(){
		$("#table2").hide();
		$("#table").show();
		$(this).addClass("visited");
		$("#mpa12").removeClass();
		return false;
	});
	
	$("#mpa12").click(function(){
		$("#table").hide();
		$("#table2").show();
		$(this).addClass("visited");
		$("#mpa1").removeClass();
		return false;
	});
});
});
