// JavaScript Document

this.scrollpane = function()
{
	$('.rightScrollContent').jScrollPane({
			scrollbarWidth:5,
			scrollbarMargin:19								 
										 });
};	  

$(document).ready(function(){	
	if(navigator.userAgent.match(/iPhone/i)){
		}else{
		scrollpane();
		};
});

