Summary 3
diff --git a/src/org/climbingguide/gui/FragmentCreate.java b/src/org/climbingguide/gui/FragmentCreate.java
deleted file mode 100644
index 218d7b8..0000000
--- a/src/org/climbingguide/gui/FragmentCreate.java
+++ /dev/null
@@ -1,90 +0,0 @@
-package org.climbingguide.gui;
-
-import org.climbingguide.main.R;
-import org.json.JSONException;
-import org.json.JSONObject;
-
-import android.app.Fragment;
-import android.os.Bundle;
-import android.view.LayoutInflater;
-import android.view.View;
-import android.view.ViewGroup;
-import android.view.View.OnClickListener;
-import android.widget.Button;
-import android.widget.EditText;
-import android.widget.TextView;
-
-public class FragmentCreate extends Fragment{
-	public String[] creating = new String[2];
-	
-	public FragmentCreate(String[] current){
-		creating = current;
-	}
-	
-	switch(creating){
-		case "area":
-			;
-			
-		default:
-			break;
-	}
-	
-	@Override
-	  public View onCreateView(LayoutInflater inflater, ViewGroup container,
-	      Bundle savedInstanceState) {
-		getActivity().setTitle("Create");
-		View view = inflater.inflate(R.layout.create_route,container, false);
-		
-		Button b1 = (Button) view.findViewById(R.id.button1);
-		
-		b1.setOnClickListener(onClickListener);
-
-		return view;
-	}
-		
-		private OnClickListener onClickListener = new OnClickListener() {
-		     @Override
-		     public void onClick(final View v) {
-				EditText e1   = (EditText)v.findViewById(R.id.editText1);
-		 		EditText e2   = (EditText)v.findViewById(R.id.editText2);
-		 		//id_of_sector, vyriesi sa potom
-				EditText e3   = (EditText)v.findViewById(R.id.editText3);
-				EditText e4   = (EditText)v.findViewById(R.id.editText4);
-				EditText e5   = (EditText)v.findViewById(R.id.editText5);
-				TextView v1 = (TextView)v.findViewById(R.id.textView1);
-				TextView v2 = (TextView)v.findViewById(R.id.textView2);
-				TextView v3 = (TextView)v.findViewById(R.id.textView3);
-				TextView v4 = (TextView)v.findViewById(R.id.textView4);
-				TextView v5 = (TextView)v.findViewById(R.id.textView5);
-				TextView v6 = (TextView)v.findViewById(R.id.textView6);
-				
-		 		JSONObject json = new JSONObject();
-				
-		 		try {
-					json.put("route_name", e1.getText().toString());
-					json.put("sector", e2.getText().toString());
-					json.put("difficulty", e3.getText().toString());
-					json.put("bolts", e4.getText().toString());
-					json.put("length", e5.getText().toString());
-				} catch (JSONException e) {
-					e.printStackTrace();
-				}
-		
-		    	
-		    	try {
-					v1.setText((CharSequence) json.get("route_name"));
-					v3.setText((CharSequence) json.get("difficulty"));
-					v4.setText((CharSequence) json.get("bolts"));
-					v5.setText((CharSequence) json.get("length"));
-				} catch (JSONException e) {
-					// TODO Auto-generated catch block
-					e.printStackTrace();
-				}
-		    	
-		 		
-		     }
-		};
-		
-	}
-
-
diff --git a/src/org/climbingguide/gui/FragmentCreateRoute.java b/src/org/climbingguide/gui/FragmentCreateRoute.java
index 2dabcab..384ebcf 100644
--- a/src/org/climbingguide/gui/FragmentCreateRoute.java
+++ b/src/org/climbingguide/gui/FragmentCreateRoute.java
@@ -17,14 +17,8 @@
 import android.widget.TextView;
 
 public class FragmentCreateRoute extends Fragment{
-	public int sector;
-//	switch(creating){
-//		case "area":
-//			;
-//			
-//		default:
-//			break;
-//	}
+	public int id;
+	
 	
 	@Override
 	  public View onCreateView(LayoutInflater inflater, ViewGroup container,
@@ -66,10 +60,9 @@
 				} catch (JSONException e) {
 					e.printStackTrace();
 				}
-		
-		    	
+
 		    	try {
-					v1.setText( sector);
+					v1.setText( id);
 					v3.setText((CharSequence) json.get("difficulty"));
 					v4.setText((CharSequence) json.get("bolts"));
 					v5.setText((CharSequence) json.get("length"));
@@ -78,7 +71,6 @@
 					e.printStackTrace();
 				}
 		    	
-		 		
 		     }
 		};
 		
diff --git a/src/org/climbingguide/main/MainActivity.java b/src/org/climbingguide/main/MainActivity.java
index 36e9b5a..c5bd296 100644
--- a/src/org/climbingguide/main/MainActivity.java
+++ b/src/org/climbingguide/main/MainActivity.java
@@ -40,6 +40,7 @@
 import android.widget.AdapterView;
 import android.widget.ListView;
 import android.widget.SearchView;
+import android.widget.Toast;
 
 
 public class MainActivity extends Activity implements SearchView.OnQueryTextListener {
@@ -358,16 +359,12 @@
 			}	
 			else
 			if(sectorAll != null && sectorAll.isVisible()){	
-				fragment = new FragmentCreateSector();
-				fragment.setArguments(bundle);
-				tagFragment = "CreateSector";
+				Toast.makeText(getApplicationContext(), "Najprv vyber oblast", Toast.LENGTH_LONG).show();
 				break;
 			}
 			else
 			if(routeAll != null && routeAll.isVisible()){
-				fragment = new FragmentCreateRoute();
-				fragment.setArguments(bundle);
-				tagFragment = "CreateRoute";
+				Toast.makeText(getApplicationContext(), "Najprv vyber sektor", Toast.LENGTH_LONG).show();
 				break;
 	
 			
@@ -408,7 +405,7 @@
 
 			FragmentManager fragmentManager = getFragmentManager();
 			fragmentManager.beginTransaction()
-					.replace(R.id.frame_container, fragment,tagFragment).commit();
+					.replace(R.id.frame_container, fragment,tagFragment).addToBackStack(null).commit();
 
 			// update selected item and title, then close the drawer
 			mDrawerList.setItemChecked(position, true);