﻿$(document).ready(function () {
	$('#rightBody > .technical_silder:first > .title').toggleClass('titleOn');
	$('#rightBody > .technical_silder:first > .content').css({display:'block'});

	$('#rightBody .technical_silder .more').click(function () {
		clearAll ();
		$(this).parent().toggleClass('titleOn');
		$(this).parent().parent().find('.content').css({display:'block'});
		return false;
	})
})

function clearAll () {
	$('#rightBody .technical_silder .titleOn').toggleClass('titleOn');
	$('#rightBody .technical_silder .content').css({display:'none'});
}
