$(document).ready(function(){
	$('.DropMenu').mouseover(function(){
		var containerID = '#'+$('div:first-child', this).attr('id');
		$(containerID).stop().animate({ width:"190px" }, 300, 'easeOutCubic', function(){
			$('.scroll-pane').jScrollPane({scrollbarWidth:14,dragMaxHeight:25,dragMinHeight:25});
		});
	});

	$('.DropMenu').mouseout(function(){
		var containerID = '#'+$('div:first-child', this).attr('id');
		$(containerID).stop().animate({ width:0 },{ queue:false, duration:300, easing: 'easeOutCubic' });
	});
});
