function switch_detail(id){
	target = $("#detail-" + id);
	if(target.attr('class') == 'hide detail'){
		target.removeClass('hide');
	}
	else{
		target.slideToggle("farst");
	}
	return false;
}

