$(document).ready(function(){
	var index=$('.child').html();

	$('.nav_right').find('li').mouseover(function(){
		//$(this).find('p').slideDown('fast');
		if($(this).find('p').length <= 0){
			$('.child').html(index);
		}else{
			$('.child').html($(this).find('p').html());
			$('.child').children('span:last').remove();
		}
		
	});	
	$('.child').hover(function(){
	},function(){
		$('.child').html(index);
	});
	$('.c_icon').click(function(){
		$(this).parent().next('dd').toggle();
		$(this).toggleClass('j');
	});
});
