function show_submenu(){
    if(document.getElementById('submenu').style.display=='none'){
        document.getElementById('submenu').style.display='block';
    }else{
        document.getElementById('submenu').style.display='none';
    }
}
$(document).ready(
  function()
  {
	$("div.intro").find("p").hide();
	var firstElement = $("div.intro").children("p").first();
	var lastElement = $("div.intro").children("p").last();
	firstElement.html("<span class='dashbot'>"+firstElement.html()+"</span>"); 
	firstElement.show().css('cursor','pointer').bind('click', function() {
		if( lastElement.is(':visible') ) {
			$("div.intro").find("p").hide();
			firstElement.show();
		} else {
			$("div.intro").find("p").show();
		}
	});
  }
);
