Vbos not working in 2d setup?

I am having an issue when I try to use a VBO to draw on a 2d setup.

public void render() {
		// Clean both color and depth buffers
		glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
		glEnableClientState(GL_VERTEX_ARRAY);
		glEnableClientState(GL_COLOR_ARRAY);
		glBindBuffer(GL_ARRAY_BUFFER,vid);
		glVertexPointer(2, GL_FLOAT, 0, 0);
		glBindBuffer(GL_ARRAY_BUFFER, cid);
	    glColorPointer(2, GL_FLOAT, 0, 0);
		glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);

		// Translate back
		glDisableClientState(GL_COLOR_ARRAY);
		glDisableClientState(GL_VERTEX_ARRAY);
		

	

	}



	public void setverticies(int x, int y, float width, float height){
		this.x = x;
		this.y = y;
		
		this.width = width;
		this.height = height;
		vbuff = BufferUtils.createFloatBuffer(2 * 4);
		vbuff.put(new float[] {
				0f,0f,
				width,0f,
				width,height,
				0f,height
				
		});
		cbuff = BufferUtils.createFloatBuffer(2 * 4);
		cbuff.put(new float[]{
				1,1,
				1,1,
				1,1,
				1,1
		});
		vbuff.rewind();
		cbuff.rewind();
		vid = glGenBuffers();
		glBindBuffer(GL_ARRAY_BUFFER, vid);
		glBufferData(GL_ARRAY_BUFFER, vbuff, GL_STATIC_DRAW);
		glBindBuffer(GL_ARRAY_BUFFER, 0);
		cid= glGenBuffers();
        glBindBuffer(GL_ARRAY_BUFFER, cid);
        glBufferData(GL_ARRAY_BUFFER, cbuff, GL_STATIC_DRAW);
        glBindBuffer(GL_ARRAY_BUFFER, 0);
		glTranslatef(x,y,0);

	}

Camera initialisation

public Camera(int x, int y, int width, int height, Core core) {
		this.x = x;
		this.y = y;
		this.width = width;
		this.height = height;
		this.core = core;

	}

	public void init() {
		glMatrixMode(GL_PROJECTION);
		glLoadIdentity();

		glMatrixMode(GL_MODELVIEW);

		glViewport(0, 0, Display.getWidth(), Display.getHeight());

		glOrtho(0, width, height, 0, 1, -1);
	}

Crash error I get when I try to run this.

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006773d450, pid=22756, tid=30604
#
# JRE version: Java(TM) SE Runtime Environment (7.0_45-b18) (build 1.7.0_45-b18)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (24.45-b08 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C  [nvoglv64.DLL+0x98d450]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x000000000124e800):  JavaThread "main" [_thread_in_native, id=30604, stack(0x0000000002bc0000,0x0000000002cc0000)]

siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000000

Registers:
RAX=0x0000000000000006, RBX=0x000000000fa3346c, RCX=0x0000000000000000, RDX=0x000000000f3577a0
RSP=0x0000000002cbf008, RBP=0x0000000000000003, RSI=0x000000000f3576f0, RDI=0x0000000000000000
R8 =0xfffffffff05ccb94, R9 =0x000000000fa3346c, R10=0x0000000066db0000, R11=0x0000000002cbf060
R12=0x0000000000000000, R13=0x0000000000000005, R14=0x0000000000000000, R15=0x000000000124e800
RIP=0x000000006773d450, EFLAGS=0x0000000000010293

Top of Stack: (sp=0x0000000002cbf008)
0x0000000002cbf008:   000000006773cebf 00000148897a066f
0x0000000002cbf018:   0000000068c8c63f 000000000d704d11
0x0000000002cbf028:   00000000000000a6 0000000000000000
0x0000000002cbf038:   000000006773c2ec 000000000f357080
0x0000000002cbf048:   0000000000000003 0000000000000010
0x0000000002cbf058:   0000000000000000 0000000000000003
0x0000000002cbf068:   0000000200000000 0000000000000000
0x0000000002cbf078:   0000000000000008 0000000000000000
0x0000000002cbf088:   0000000000000000 0000000000000000
0x0000000002cbf098:   0000000100000000 0000000400000002
0x0000000002cbf0a8:   0000001000000008 0000004000000020
0x0000000002cbf0b8:   0000010000000080 0000040000000200
0x0000000002cbf0c8:   0000100000000800 0000400000002000
0x0000000002cbf0d8:   0000000000008000 0000000000000000
0x0000000002cbf0e8:   0000140600000002 0000000000000010
0x0000000002cbf0f8:   0000000000000000 0000140600000003 

Instructions: (pc=0x000000006773d450)
0x000000006773d430:   43 0f b6 04 01 ff c1 4d 8d 49 01 41 88 41 ff 3b
0x000000006773d440:   4a 08 7c ec c3 33 c9 39 4a 08 7e 67 4d 2b c1 90
0x000000006773d450:   43 8b 04 01 ff c1 4d 8d 49 04 41 89 41 fc 3b 4a
0x000000006773d460:   08 7c ed c3 3d 0e 14 00 00 72 48 3d 0f 14 00 00 


Register to memory mapping:

RAX=0x0000000000000006 is an unknown value
RBX=0x000000000fa3346c is an unknown value
RCX=0x0000000000000000 is an unknown value
RDX=0x000000000f3577a0 is an unknown value
RSP=0x0000000002cbf008 is pointing into the stack for thread: 0x000000000124e800
RBP=0x0000000000000003 is an unknown value
RSI=0x000000000f3576f0 is an unknown value
RDI=0x0000000000000000 is an unknown value
R8 =0xfffffffff05ccb94 is an unknown value
R9 =0x000000000fa3346c is an unknown value
R10=0x0000000066db0000 is an unknown value
R11=0x0000000002cbf060 is pointing into the stack for thread: 0x000000000124e800
R12=0x0000000000000000 is an unknown value
R13=0x0000000000000005 is an unknown value
R14=0x0000000000000000 is an unknown value
R15=0x000000000124e800 is a thread


Stack: [0x0000000002bc0000,0x0000000002cc0000],  sp=0x0000000002cbf008,  free space=1020k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [nvoglv64.DLL+0x98d450]

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j  org.lwjgl.opengl.GL11.nglDrawArrays(IIIJ)V+0
j  org.lwjgl.opengl.GL11.glDrawArrays(III)V+20
j  com.lcass.graphics.objects.untexturedpanel.render()V+55
j  Demo.demorunner.render()V+13
j  com.lcass.core.Runner.start(I)V+71
j  Demo.demorunner.main([Ljava/lang/String;)V+21
v  ~StubRoutines::call_stub

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x000000000d751800 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=19068, stack(0x0000000011d30000,0x0000000011e30000)]
  0x0000000002ebc000 JavaThread "Service Thread" daemon [_thread_blocked, id=32256, stack(0x000000000dd60000,0x000000000de60000)]
  0x0000000002eb9000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=15324, stack(0x000000000dc60000,0x000000000dd60000)]
  0x0000000002ead000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=13776, stack(0x000000000db60000,0x000000000dc60000)]
  0x000000000b59d800 JavaThread "Attach Listener" daemon [_thread_blocked, id=16188, stack(0x000000000da60000,0x000000000db60000)]
  0x000000000d580800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=9756, stack(0x000000000d960000,0x000000000da60000)]
  0x000000000b58d800 JavaThread "Finalizer" daemon [_thread_blocked, id=24824, stack(0x000000000d460000,0x000000000d560000)]
  0x000000000b587000 JavaThread "Reference Handler" daemon [_thread_blocked, id=31364, stack(0x000000000d360000,0x000000000d460000)]
=>0x000000000124e800 JavaThread "main" [_thread_in_native, id=30604, stack(0x0000000002bc0000,0x0000000002cc0000)]

Other Threads:
  0x000000000b584800 VMThread [stack: 0x000000000d260000,0x000000000d360000] [id=17228]
  0x000000000d59a000 WatcherThread [stack: 0x000000000de60000,0x000000000df60000] [id=25512]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap
 PSYoungGen      total 38400K, used 4214K [0x00000007d5c00000, 0x00000007d8680000, 0x0000000800000000)
  eden space 33280K, 12% used [0x00000007d5c00000,0x00000007d601d8b8,0x00000007d7c80000)
  from space 5120K, 0% used [0x00000007d8180000,0x00000007d8180000,0x00000007d8680000)
  to   space 5120K, 0% used [0x00000007d7c80000,0x00000007d7c80000,0x00000007d8180000)
 ParOldGen       total 86528K, used 0K [0x0000000781400000, 0x0000000786880000, 0x00000007d5c00000)
  object space 86528K, 0% used [0x0000000781400000,0x0000000781400000,0x0000000786880000)
 PSPermGen       total 21504K, used 4105K [0x000000077c200000, 0x000000077d700000, 0x0000000781400000)
  object space 21504K, 19% used [0x000000077c200000,0x000000077c6025a0,0x000000077d700000)

Card table byte_map: [0x0000000005ec0000,0x00000000062e0000] byte_map_base: 0x00000000022df000

Polling page: 0x0000000001220000

Code Cache  [0x0000000002ec0000, 0x0000000003130000, 0x0000000005ec0000)
 total_blobs=309 nmethods=18 adapters=244 free_code_cache=48694Kb largest_free_block=49848576

Compilation events (10 events):
Event: 0.399 Thread 0x0000000002ead000 nmethod 14 0x0000000002f32590 code [0x0000000002f326c0, 0x0000000002f32758]
Event: 0.399 Thread 0x0000000002ead000   15             java.nio.Buffer::nextGetIndex (31 bytes)
Event: 0.400 Thread 0x0000000002ead000 nmethod 15 0x0000000002f32810 code [0x0000000002f32940, 0x0000000002f329b8]
Event: 0.400 Thread 0x0000000002ead000   16             java.nio.StringCharBuffer::get (19 bytes)
Event: 0.401 Thread 0x0000000002ead000 nmethod 16 0x0000000002f30110 code [0x0000000002f30260, 0x0000000002f303b8]
Event: 0.401 Thread 0x0000000002ead000   17             org.lwjgl.MemoryUtil$CharSequenceNT::charAt (28 bytes)
Event: 0.401 Thread 0x0000000002ead000 nmethod 17 0x0000000002f2fd90 code [0x0000000002f2fee0, 0x0000000002f2ffd8]
Event: 0.403 Thread 0x0000000002eb9000 nmethod 12 0x0000000002f2f150 code [0x0000000002f2f300, 0x0000000002f2f840]
Event: 0.411 Thread 0x0000000002ead000   18             java.lang.String::equals (81 bytes)
Event: 0.414 Thread 0x0000000002ead000 nmethod 18 0x0000000002f34050 code [0x0000000002f341a0, 0x0000000002f343f8]

GC Heap History (0 events):
No events

Deoptimization events (0 events):
No events

Internal exceptions (10 events):
Event: 0.473 Thread 0x000000000124e800 Threw 0x00000007d5f603b8 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.499 Thread 0x000000000124e800 Threw 0x00000007d5f69610 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.500 Thread 0x000000000124e800 Threw 0x00000007d5f6bf60 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.501 Thread 0x000000000124e800 Threw 0x00000007d5f6df50 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.501 Thread 0x000000000124e800 Threw 0x00000007d5f6fdf8 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.501 Thread 0x000000000124e800 Threw 0x00000007d5f72218 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.513 Thread 0x000000000124e800 Threw 0x00000007d5f7d7e0 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.513 Thread 0x000000000124e800 Threw 0x00000007d5f80938 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.514 Thread 0x000000000124e800 Threw 0x00000007d5f836b8 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
Event: 0.514 Thread 0x000000000124e800 Threw 0x00000007d5f85a70 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244

Events (10 events):
Event: 0.501 loading class 0x000000000d6bf660 done
Event: 0.513 loading class 0x000000000d5a7aa0
Event: 0.513 loading class 0x000000000d5a7aa0 done
Event: 0.513 loading class 0x000000000d7026b0
Event: 0.513 loading class 0x000000000d7026b0 done
Event: 0.514 loading class 0x000000000d6bf960
Event: 0.514 loading class 0x000000000d6bf960 done
Event: 0.514 Thread 0x000000000d751800 Thread added: 0x000000000d751800
Event: 0.514 loading class 0x000000000d724ea0
Event: 0.514 loading class 0x000000000d724ea0 done


Dynamic libraries:
0x000007f7b06e0000 - 0x000007f7b0713000 	C:\Program Files\Java\jre7\bin\javaw.exe
0x000007f8d2c20000 - 0x000007f8d2de0000 	C:\Windows\SYSTEM32\ntdll.dll
0x000007f8d2470000 - 0x000007f8d25a6000 	C:\Windows\system32\KERNEL32.DLL
0x000007f8cfe60000 - 0x000007f8cff53000 	C:\Windows\system32\KERNELBASE.dll
0x000007f8d22e0000 - 0x000007f8d23be000 	C:\Windows\system32\ADVAPI32.dll
0x000007f8d2040000 - 0x000007f8d218c000 	C:\Windows\system32\USER32.dll
0x000007f8cd8e0000 - 0x000007f8cdb4a000 	C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9200.16579_none_418ab7ef718b27ef\COMCTL32.dll
0x000007f8d25b0000 - 0x000007f8d2655000 	C:\Windows\system32\msvcrt.dll
0x000007f8d21f0000 - 0x000007f8d2238000 	C:\Windows\SYSTEM32\sechost.dll
0x000007f8d2670000 - 0x000007f8d27b5000 	C:\Windows\system32\RPCRT4.dll
0x000007f8d2800000 - 0x000007f8d2941000 	C:\Windows\system32\GDI32.dll
0x000007f8d27c0000 - 0x000007f8d27f9000 	C:\Windows\system32\IMM32.DLL
0x000007f8d0010000 - 0x000007f8d0126000 	C:\Windows\system32\MSCTF.dll
0x0000000069350000 - 0x0000000069422000 	C:\Program Files\Java\jre7\bin\msvcr100.dll
0x0000000068b80000 - 0x0000000069349000 	C:\Program Files\Java\jre7\bin\server\jvm.dll
0x000007f8cb110000 - 0x000007f8cb119000 	C:\Windows\SYSTEM32\WSOCK32.dll
0x000007f8c7980000 - 0x000007f8c79a0000 	C:\Windows\SYSTEM32\WINMM.dll
0x000007f8d2950000 - 0x000007f8d2957000 	C:\Windows\system32\PSAPI.DLL
0x000007f8d2190000 - 0x000007f8d21e8000 	C:\Windows\system32\WS2_32.dll
0x000007f8c77a0000 - 0x000007f8c77d3000 	C:\Windows\SYSTEM32\WINMMBASE.dll
0x000007f8d1c40000 - 0x000007f8d1c49000 	C:\Windows\system32\NSI.dll
0x000007f8cff60000 - 0x000007f8cffaf000 	C:\Windows\SYSTEM32\cfgmgr32.dll
0x000007f8cfc50000 - 0x000007f8cfc72000 	C:\Windows\system32\DEVOBJ.dll
0x0000000068b70000 - 0x0000000068b7f000 	C:\Program Files\Java\jre7\bin\verify.dll
0x0000000068b40000 - 0x0000000068b68000 	C:\Program Files\Java\jre7\bin\java.dll
0x0000000068b20000 - 0x0000000068b35000 	C:\Program Files\Java\jre7\bin\zip.dll
0x0000000180000000 - 0x0000000180051000 	C:\eclipse\api\native\windows\lwjgl64.dll
0x000007f8bdcb0000 - 0x000007f8bddcf000 	C:\Windows\SYSTEM32\OPENGL32.dll
0x000007f8cc670000 - 0x000007f8cc679000 	C:\Windows\SYSTEM32\VERSION.dll
0x000007f8beef0000 - 0x000007f8bef1c000 	C:\Windows\SYSTEM32\GLU32.dll
0x000007f8bdbc0000 - 0x000007f8bdcaa000 	C:\Windows\SYSTEM32\DDRAW.dll
0x000007f8ca600000 - 0x000007f8ca608000 	C:\Windows\SYSTEM32\DCIMAN32.dll
0x000007f8ce8b0000 - 0x000007f8ce996000 	C:\Windows\system32\uxtheme.dll
0x000007f8cdb80000 - 0x000007f8cdba1000 	C:\Windows\SYSTEM32\dwmapi.dll
0x0000000066db0000 - 0x0000000068add000 	C:\Windows\SYSTEM32\nvoglv64.DLL
0x000007f8d05f0000 - 0x000007f8d18d0000 	C:\Windows\system32\SHELL32.dll
0x000007f8d1a70000 - 0x000007f8d1c40000 	C:\Windows\system32\SETUPAPI.dll
0x000007f8d1c60000 - 0x000007f8d1e10000 	C:\Windows\SYSTEM32\combase.dll
0x000007f8d0130000 - 0x000007f8d0180000 	C:\Windows\system32\SHLWAPI.dll
0x000007f8cffb0000 - 0x000007f8d0005000 	C:\Windows\system32\WINTRUST.dll
0x000007f8cfc80000 - 0x000007f8cfe51000 	C:\Windows\system32\CRYPT32.dll
0x000007f8cfb80000 - 0x000007f8cfb96000 	C:\Windows\system32\MSASN1.dll
0x000007f8cee10000 - 0x000007f8cee3e000 	C:\Windows\SYSTEM32\ntmarta.dll
0x000007f8cfa70000 - 0x000007f8cfab3000 	C:\Windows\SYSTEM32\powrprof.dll
0x000007f8d0410000 - 0x000007f8d058e000 	C:\Windows\system32\ole32.dll
0x000007f8cf910000 - 0x000007f8cf91a000 	C:\Windows\SYSTEM32\CRYPTBASE.dll
0x000007f8cf8b0000 - 0x000007f8cf90c000 	C:\Windows\SYSTEM32\bcryptPrimitives.dll
0x000007f8ca260000 - 0x000007f8ca2f1000 	C:\Windows\SYSTEM32\mscms.dll
0x000007f8cf100000 - 0x000007f8cf11f000 	C:\Windows\SYSTEM32\USERENV.dll
0x000007f8cfad0000 - 0x000007f8cfae5000 	C:\Windows\SYSTEM32\profapi.dll
0x000007f8bae00000 - 0x000007f8bae40000 	C:\Windows\SYSTEM32\icm32.dll
0x000007f8cc060000 - 0x000007f8cc1c3000 	C:\Windows\SYSTEM32\dbghelp.dll

VM Arguments:
jvm_args: -Djava.library.path=C:\eclipse\api\native\windows -Dfile.encoding=Cp1252 
java_command: Demo.demorunner
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT
USERNAME=lucas
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 60 Stepping 3, GenuineIntel



---------------  S Y S T E M  ---------------

OS: Windows 8 , 64 bit Build 9200 

CPU:total 8 (4 cores per cpu, 2 threads per core) family 6 model 60 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, erms, ht, tsc, tscinvbit

Memory: 4k page, physical 8304132k(4360412k free), swap 16692740k(10731928k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (24.45-b08) for windows-amd64 JRE (1.7.0_45-b18), built on Oct  8 2013 05:47:22 by "java_re" with unknown MS VC++:1600

time: Sun Jan 26 21:45:01 2014
elapsed time: 0 seconds