jQuery(function(){
	 $('.showLastminutes').click(function(event){
	     event.preventDefault();
	     $(this).parent().children('h3').show();
	     $(this).hide();
	   });
});
