
// подробное описание
$(document).ready(function() {
	$("#showDesc").click(function() {
		$("#strictDesc").hide("slow");
		$("#fullDesc").show("slow");
		$("#fullDesc").css({ 'font-size' : '11px', 'line-height' : '14px' });
	});
});