﻿// base.js
if(typeof jQuery != 'undefined') {
	
	$(document).ready(function() {
		
		// make the menu work in IE
		
		if($.browser) {
			if($.browser.msie) {
				$('#mainmenu li').hover(function() {
					$(this).find('div.level_2_container').show(0);
					$(this).addClass('hover');
				}, function() {
					$(this).find('div.level_2_container').hide(0);
					$(this).removeClass('hover');
				});
			}
		}
		
		if($('#mainmenu li')) {
			$('#mainmenu li').hover(function() {
				$(this).addClass('hover');
			}, function() {
				$(this).removeClass('hover');
			});
		}
		
		/*$('#layout .content_right').jScrollPane({
			showArrows: true,
			scrollbarWidth : 7,
			wheelSpeed: 10
		});*/
	});
	
}