Index: /issm/trunk-jpl/src/android/ISSM/res/layout/issmcore.xml
===================================================================
--- /issm/trunk-jpl/src/android/ISSM/res/layout/issmcore.xml	(revision 14245)
+++ /issm/trunk-jpl/src/android/ISSM/res/layout/issmcore.xml	(revision 14246)
@@ -34,5 +34,7 @@
   		android:layout_height="420dp"
   		android:progress="100"
-  		android:max="490"/>
+  		android:max="490"
+  		android:progressDrawable="@layout/seekbar_progress"
+	    android:thumb="@drawable/thumb"/>
 
     <FrameLayout
Index: /issm/trunk-jpl/src/android/ISSM/res/layout/seekbar_progress.xml
===================================================================
--- /issm/trunk-jpl/src/android/ISSM/res/layout/seekbar_progress.xml	(revision 14246)
+++ /issm/trunk-jpl/src/android/ISSM/res/layout/seekbar_progress.xml	(revision 14246)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:id="@android:id/background">
+        <nine-patch
+            xmlns:android="http://schemas.android.com/apk/res/android"
+            android:src="@drawable/seek_bg"
+            android:dither="true"
+         />
+    </item>
+    <item android:id="@android:id/secondaryProgress">
+        <clip>
+            <shape>
+                <gradient
+                    android:startColor="#80028ac8"
+                    android:centerColor="#80127fb1"
+                    android:centerY="0.75"
+                    android:endColor="#a004638f"
+                    android:angle="270"
+                />
+            </shape>
+        </clip>
+    </item>
+    <item
+        android:id="@android:id/progress"
+        android:drawable="@layout/seekbar_progress_bg"
+    />
+</layer-list>
Index: /issm/trunk-jpl/src/android/ISSM/res/layout/seekbar_progress_bg.xml
===================================================================
--- /issm/trunk-jpl/src/android/ISSM/res/layout/seekbar_progress_bg.xml	(revision 14246)
+++ /issm/trunk-jpl/src/android/ISSM/res/layout/seekbar_progress_bg.xml	(revision 14246)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+ <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+    <item>
+        <clip>
+        <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
+            android:src="@drawable/blue" 	
+            android:antialias="true"
+            android:dither="false"
+            android:filter="false"
+            android:gravity="left"
+        />
+        </clip>
+    </item>
+</layer-list>
Index: /issm/trunk-jpl/src/android/ISSM/src/com/example/issm/MyGLSurfaceView.java
===================================================================
--- /issm/trunk-jpl/src/android/ISSM/src/com/example/issm/MyGLSurfaceView.java	(revision 14245)
+++ /issm/trunk-jpl/src/android/ISSM/src/com/example/issm/MyGLSurfaceView.java	(revision 14246)
@@ -109,15 +109,13 @@
 		}
 		
-		Random r = new Random();
-		float z1,z2,z3;
+		//Random r = new Random();
+		//float z1,z2,z3;
 		for(int i = 0 ; i <size; i++)
 		{
 			//r.nextFloat() will generate random from 0-1
-			z1 = r.nextFloat();
-			z2 = r.nextFloat();
-			z3 = r.nextFloat();
-			f[i][2] = z1;
-			f[i][9] = z2;
-			f[i][16]= z3;
+			
+			System.out.println(f[i][2]);
+			System.out.println(f[i][9]);
+			System.out.println(f[i][16]);
 			
 			//System.out.println("z = " + z1 + "," + z2 + "," + z3);
Index: /issm/trunk-jpl/src/android/ISSM/src/com/example/issm/VerticalSeekBar.java
===================================================================
--- /issm/trunk-jpl/src/android/ISSM/src/com/example/issm/VerticalSeekBar.java	(revision 14245)
+++ /issm/trunk-jpl/src/android/ISSM/src/com/example/issm/VerticalSeekBar.java	(revision 14246)
@@ -35,5 +35,4 @@
     	c.rotate(90);
         c.translate(0, -getWidth());
-
         super.onDraw(c);
     }
