
$(function () {
//	$('p>strong>img').each(function () {
//		$(this).closest('p').addClass('p_title');
//	});
//	var $p_title = $('div#products_in > p.p_title');
	$('div#products_in > h2').each(function () {
		var matched = [], cur = this['nextSibling'];
		while ( cur && cur.nodeType !== 9 && ( cur.nodeType !== 1 || !jQuery( cur ).is( 'h2' )) ) {
			if ( cur.nodeType === 1 ) {
				matched.push( cur );
//				console.debug(cur);
			}
			cur = cur['nextSibling'];
		}
		
		$(matched).wrapAll('<div class="p_content"><div></div></div>');
	});
//	$p_title.
	$('div#products_in > div.p_content').each(function () {
		$this = $(this);
		$('div', $this).append('<a href="#" class="a_toggle">свернуть</a>');
		var sText = $this.text().substr(0,500);
		$this.append('<div style="display: none">' + sText + '<a href="#" style="margin-left: 15px" class="a_toggle">подробнее</a></div>');
//		.text
	});
	$('div#products_in > div.p_content > div').toggle();
	$('div#products_in > div.p_content > div > a.a_toggle').click(function () {
		$(this).closest('div.p_content').children('div').toggle();
		return false;
	});
});


