$(document).ready(function() {
	$("table td:last-child").addClass("last");
	
// News excerpts
	// if js is turned off
	$("div.news-excerpt-wrap").removeClass("active-news");
	$("div.news-excerpt-wrap").removeClass("mb10");
	$("span.rounded-green-txt").removeClass("rounded-red-txt-js");
	// 
	$("div.news-excerpt-wrap h3 a").click(function () {
		var nextNewsBlocks = $(this).parents("div.news-excerpt-wrap").nextAll("div.news-excerpt-wrap");
		var prevNewsBlocks = $(this).parents("div.news-excerpt-wrap").prevAll("div.news-excerpt-wrap");
		// delete all additional classes. 
		nextNewsBlocks.removeClass("active-news");
		prevNewsBlocks.removeClass("active-news");		
		nextNewsBlocks.find("span.rounded-green-txt").removeClass("rounded-red-txt-js");
		prevNewsBlocks.find("span.rounded-green-txt").removeClass("rounded-red-txt-js");
		// add additional classes
		$(this).parents("div.news-excerpt-wrap").toggleClass("active-news");
		$(this).parents("div.news-excerpt-wrap").find("span.rounded-green-txt").toggleClass("rounded-red-txt-js");
		
		return false;
	});
// end News excerpts
	
//	$("#subject").selectbox();
	$('#goto').click(function(){window.location.href='http://consulting.ridel.ru';return false});

});
