$(document).ready(function(){
	
	$('.b_menu li').click(function(){
		if ($(this).children('div').children('ul').css('display') == 'none'){
			$(this).children('.linkmenu_title').css('background-position','right -16px');
			$(this).children('div').children('ul').slideToggle(300);
			$(this).children('.linkmenu_title').children('span').css('border','none');
		} else {
			$(this).children('.linkmenu_title').css('background-position','right 0');
			$(this).children('div').children('ul').slideToggle(300);
			$(this).children('.linkmenu_title').children('span').css('border-bottom','1px dotted #444');
		};
	});

	
	
});
