jQuery(document).ready(function(){
	jQuery('.cell-box .detail').hide();
	jQuery('.cell-box a.head').bind('click',function(){
		jQuery(this).next('.cell-box .detail').slideToggle('fast');
		jQuery(this).toggleClass('head-active');
		return false;
	});
	
	jQuery('.footer .head').bind('click',function(){
		jQuery('.footer').toggleClass('footer-active');
		return false;
	});	
});
