score:2

Accepted answer

You have forgot a comma in your code, Change:

backgroundColor: '#FFFFFF',
align: 'right'
verticalAlign: 'top',

to:

backgroundColor: '#FFFFFF',
align: 'right',
verticalAlign: 'top',

Here is a working example of your code: http://jsfiddle.net/HCJCr/

Tip: Learn how to use the debugger in Chrome or Firebug in Firefox. You will spot these errors and others in a second. It's worth the time.


Related Query

More Query from same tag