$(document).ready(function(){
	$("div[id!='']").hide();
	$("div#twtr-widget-1").show();
	$("p[id!='']").hide();
	$(".dashed").click(function(){
		$($(this).attr("href")).slideToggle(500);
		if($(this).text() == "Ещё вопросы")
			$(this).text("Скрыть вопросы");
		else if($(this).text() == "Скрыть вопросы")
			$(this).text("Ещё вопросы");
		else if($(this).text() == "Ещё возможности")
			$(this).text("Скрыть возможности");
		else if($(this).text() == "Скрыть возможности")
			$(this).text("Ещё возможности");
		return false;
	})
});
