$(document).ready(function() {
	$('body').supersleight();
		//$('.mainMenuSub').animate({width: '600'}, 5000, function() {});
		//$('.mainMenuSub').hide();
		//$('.mainMenuSub').show(2000, function() {});
		//$('.mainMenuSub').animate({opacity: "show", bottom: "-15"}, 1500);
		$('.mainMenu li').hover(function(){
			var e = $(this).find("img");
			$(e).attr('src','/client/assets/images/_template/menu/on/' + e.attr('id') + '.png');
		},function(){
			var e = $(this).find("img");
			$(e).attr('src','/client/assets/images/_template/menu/off/' + e.attr('id') + '.png');
		});
	
	$('.scroll-pane').jScrollPane();
		
});
