$(document).ready(function(){
	$('.cusel-scroll-pane span:first').css("border", "none");
	$('.b-menu a').each(function(){
		$(this).hover(function(){
			$(this).parent('td:first').find('.b-menu-sub:first').show();
			$(this).parent('div:first').find('.b-menu-sub2:first').show();
		},
		function(){
			$(this).parent('td:first').find('.b-menu-sub:first').hide();
			$(this).parent('div:first').find('.b-menu-sub2:first').hide();
		});
	});
	$('.b-menu-sub').hover(
		function(){
			$(this).parent('td').find('a:first').addClass('hover');
			$(this).show();
		},
		function(){
			$('a').removeClass('hover');
			$(this).hide();
		}
	);
	$('.b-menu-sub2').hover(
		function(){
			$(this).parent('td').find('a:first').addClass('hover');
			$(this).parent('div').find('a:first').addClass('hover');
			$(this).show();
		},
		function(){
			$(this).parent('div').find('a').removeClass('hover');
			$(this).hide();
		}
	);
});

function a_toggle(id){
	$("#div_toggle"+id).toggle();
}
