Index: trunk/src/org/openstreetmap/josm/gui/GettingStarted.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/GettingStarted.java	(revision 345)
+++ trunk/src/org/openstreetmap/josm/gui/GettingStarted.java	(revision 346)
@@ -4,4 +4,5 @@
 import static org.openstreetmap.josm.tools.I18n.tr;
 
+import java.awt.Dimension;
 import java.awt.GridBagLayout;
 import java.awt.event.ActionEvent;
@@ -30,5 +31,5 @@
 			this.action = action;
 			String normalized = text.replaceAll("\\[([^\\]]*)\\]", "$1");
-			String link = "<html><h2>"+text.replaceAll("\\[([^\\]]*)\\]", "<a href='"+action+"'>$1</a>")+"</h2></html>";
+			String link = "<html><h3>"+text.replaceAll("\\[([^\\]]*)\\]", "<a href='"+action+"'>$1</a>")+"</h3></html>";
 			setContentType("text/html");
 			setText(link);
@@ -70,5 +71,6 @@
 		addGettingHelp();
 		
-		panel.add(GBC.glue(0,140), GBC.eol());
+		panel.add(GBC.glue(0,70), GBC.eol());
+		//panel.setMinimumSize(new Dimension(400, 600));
 		add(panel);
     }
@@ -87,5 +89,5 @@
 
 	public void addCategory(String category) {
-	    panel.add(new JLabel("<html><h1>"+category+"</h1></html>"), GBC.eop().fill(GBC.HORIZONTAL).insets(0,20,0,0));
+	    panel.add(new JLabel("<html><h2>"+category+"</h2></html>"), GBC.eol().fill(GBC.HORIZONTAL).insets(0,20,0,0));
     }
 
@@ -95,5 +97,5 @@
         button.addActionListener(this);
         button.setActionCommand(action);
-		panel.add(button, GBC.std().insets(40,0,15,0));
+		panel.add(button, GBC.std().insets(20,0,5,0));
 		panel.add(new LinkLabel(text,action),GBC.eol());
     }
