

function trace(msg) {
	if (typeof(console) != 'undefined' && typeof(console.log) != 'undefined') { 
		console.log(msg);
	}
}

$(document).ready(function() {
	
	trace('ready ***');
		
	if ($.browser.msie == false) {
		$('#main').jScrollPane({
			enableKeyboardNavigation: false
		});
	}
	
});
