jQuery(document).ready(function()
{
        $('.collapsed').bind('mouseover', function(e)
        {
			var html = '';
			if ($('#'+$(this).attr('id')+'-subs').length) html = $('#'+$(this).attr('id')+'-subs').html();
			$('.sub_menu_block').html(html);
        });
});
