jQuery(document).ready(function() { 
	$(".masinfo").hide(); 	
	$('<p>').insertBefore('.masinfo');
	$('<a class="reveal">[+info]</a> ').insertBefore('.masinfo'); 	
	$("a.reveal").click(function(){ 
		if ($(this).next(".masinfo").is(":hidden")){
			$(this).next(".masinfo").slideDown(400);		
			$(this).html('[-info]');
		}else{
			$(this).next(".masinfo").slideUp(400);	
			$(this).html('[+info]');
		}
	}); 
});
