$(document).ready(function(){
    $('.showhide').hide();
	$('.showbutton').click(function(e){
		//$('.showhide').hide();
		//$('#' + $(this).attr('rel')).show();
		$('#' + $(this).attr('rel')).toggle();
       if($(this).html() == "More Information.."){
			$(this).html("Less Information..")
		} else {
			$(this).html("More Information..")
		}
	});
});
