﻿$(function() {
	//$('.storycontent').wrapAll(document.createElement("ol"));
	//$('.storycontent h3').wrap(document.createElement("li"));
	$('.storycontent h3').append('<a class="more"> [информация&nbsp;&raquo;]</a><a class="less"> [&laquo;&nbsp;cвернуть]</a>');
	//$('.storycontent table').css('margin','0');
	//$('.storycontent table tr:odd').css('background-color','#EAF6FF');
	$('.storycontent .hide-me, .storycontent .less').toggle();
	$('.storycontent h3 a').css({'font-size':'10px','vertical-align':'sub','float':'right','margin-right':'0px','color':'#EEE'});
	$('.storycontent h3').css({'cursor':'pointer','margin-top':'10px','margin-bottom':'0','background-color':'#888','color':'#EEE','padding':'7px 10px','text-align':'left'});
	$('.storycontent h3').click(function(){ $(this).next('.hide-me').slideToggle(); $(this).children('a').toggle() });
});
