U8glib and LCD issue

Hi to all.

I have used this LCD display before but i didnt write down how did i connect it.
So, this time i have connect it based on tutorial in attach but i can not get any output...
Btw. LCD is ON and i can see "background"...

Picture of connection:

Working code from last setup:
U8GLIB_ST7920_128X64 u8g(6,5,4,U8G_PIN_NONE);

void u8g_prepare(void) {
u8g.setFont(u8g_font_6x10);
u8g.setFontRefHeightExtendedText();
u8g.setDefaultForegroundColor();
u8g.setFontPosTop();
}

void welcomeMess(void) {
u8g.drawFrame(3, 3, 122, 38);
u8g.setFont(u8g_font_6x12);
u8g.drawStr(15, 13, "Enter data");
u8g.setFont(u8g_font_10x20);
...
...

u8g.drawStr( 8, 38, sData);

u8g.drawCircle(31, 52, 9);
u8g.drawCircle(60, 52, 9);
u8g.drawCircle(90, 52, 9);

u8g.setFont(u8g_font_6x12);
u8g.drawStr( 25, 56, "10");
u8g.drawStr( 55, 56, "20");
u8g.drawStr( 85, 56, "50");
u8g.drawStr( 70, 50, Input);
}

Ideas ?