﻿jQuery(document).ready(function() {
			$('div.text').find('p:not(:first)').hide();
			$('div.more a').click(function () {
				var text = $(this).parent('.more').parent('.description').find("div").eq(2);
					gallery = $(this).parent('.more').parent('.description').parent('.tender').find('div.jcarousel-skin-tango');
					gallery2 = $(this).parent('.more').parent('.description').parent('.tender').find('div.jcarousel_one');
					sizegallary = $(this).parent('.more').parent('.description').parent('.tender').find('ul.sizegallary');
					clone = $(this).parent('.more').parent('.description').parent('.tender:first-child').clone();
				$(text).find('p:not(:first)').slideToggle("fast");
				if ($(this).is('.link_more')) {
					$(this).text('Закрыть подробное описание >>');
					$(text).addClass('detail');
					$(this).removeClass('link_more');
					$(gallery).hide();
					$(gallery2).hide();
					$(sizegallary).show();
				} else {
					$(this).text('Подробнее >>');
					$(text).removeClass('detail');
					$(this).addClass('link_more');
					$(sizegallary).hide();
					$(gallery).show();
					$(gallery2).show();
				}
			}); 
			
			
});
