The right to left direction is currently defined in the html tag by the the dir definition:
PHP Code:
<html dir="rtl" lang="ar-sa">
In IE (and others?) that will position the scrollbar on the left hand side.
To return the scrollbar to the right hand side, you simply need to remove the dir definition and set the text direction without applying it to the entire document or by using CSS.
This could be done by using the dir definition to surround all the content but without applying it to the html/body tags e.g. use the below code within the body tags but surrounding all other content.
PHP Code:
<bdo dir="rtl"></bdo>
Or you could apply the direction through the CSS more easily in the CSS editor by adding the below definition to the CSS for the body tag for example, but this may not effect everything (column orders etc):
PHP Code:
direction: rtol;