jQuery(document).ready(function(){
	jQuery('#menu-left-menu li').hover(
		function(){
			jQuery(this).children('.sub-menu').show();
		},
		function(){
			jQuery(this).children('.sub-menu').hide();
		}
	)
});

