$(document).ready(function() {
  $(".content-tovar-table-img").find("td:first").addClass("content-tovar-table-img-first");
  $(".content-tovar-table-img-sten").find("td:first").addClass("content-tovar-table-img-first");
  $(".header-menu ul").find("li:eq(3)").addClass("width19");
  $(".content-cena table").find("tr:odd").addClass("table-ser");
  $(".content-cena table").find("tr:eq(1)").removeClass("table-ser");

    $(".content-tovar-table-zag span").click(function(){
        $(".content-tovar-table-zag span").removeClass("active");
        var tovarclass = $(this).attr('class');
        var tovarblockhtml = $('.' + tovarclass + 'block').html();
        $(".content-tovar-galery-block").html(tovarblockhtml);

        $(".content-tovar-galery-block").slideDown("slow");
        $(this).addClass("active");

        var heightimg = $('.content-tovar-galery-block .vipad-form-foto-block-big img').attr('height');
        heightimg = heightimg*1.2;
		heightimg = heightimg + 'px';
        var heightleft = $('.vipad-form-block-contaner').height() ;
        $('.vipad-form-block-right').css('height',heightimg);
        /* */
        $('.content-tovar-galery-block .vipad-form-foto-block-small img').bind('click',function(){
		    $('.content-tovar-galery-block .vipad-form-foto-block-small img').removeClass("sel");
		    $('.content-tovar-galery-block .vipad-form-foto-block-big img').fadeOut('fast').css('display','none'); // скрытие
		    var iH = $(this).attr('height');
		    iH = iH*4.5;
		    iH = iH + 'px';
		    //$('#imBig').attr('height','200px');
		    $('.content-tovar-galery-block .vipad-form-foto-block-big').animate({height:iH},300); // плавное изменение размеров
	    	$('.content-tovar-galery-block .vipad-form-foto-block-big img').attr('src',$(this).attr("src")); // замена картинки
		    $('.content-tovar-galery-block .vipad-form-foto-block-big img').fadeIn(); // показ картинки
		    $(this).addClass("sel"); // установка рамки у превью
	    });
        $(".vipad-form-block-right, .vipad-form-block-close img").click(function(){
            $(".content-tovar-galery-block").slideUp("slow");
            $(".content-tovar-table-zag span").removeClass("active");
        });
    });
});

<!-- для странички с контактами -->
$(document).ready(function() {
$('ul.tabs li').css('cursor', 'pointer');
$('ul.tabs li').click(function(){
	var thisClass = this.className.slice(0,2);
	$('div.t1').hide();
	$('div.t2').hide();
	$('div.t3').hide();
	$('div.t4').hide();
	$('div.' + thisClass).show();
	$('ul.tabs li').removeClass('tab-current');
	$(this).addClass('tab-current');
	});
});

$(document).ready(function(){
	$('.thumb').bind('click',function(){
		$('.thumb').removeClass("sel");
		$('#bigimg').fadeOut('fast').css('display','none'); // скрытие
		var iH = $(this).attr('height');
		iH = iH*3.2;
		iH = iH + 'px';
		//$('#imBig').attr('height','200px');
		$('.vipad-form-foto-block-big').animate({height:iH},200); // плавное изменение размеров
		$('#bigimg').attr('src',$(this).attr('src')); // замена картинки
		$('#bigimg').fadeIn(); // показ картинки
		$(this).addClass("sel"); // установка рамки у превью
	});
});
