$(document).ready(function(){
	$('.fold,.open').click(function(){
		$(this).toggleClass('fold').toggleClass('open');
		$(this).parent('p').next('ul.item').toggle();
		return false;
	});
	
	$('.vodfold,.vodopen').click(function(){
		$(this).toggleClass('vodfold').toggleClass('vodopen');
		$(this).parent().next('table.vod').toggle();
		return false;
	});
	
	
	
	
	
	
	
});