$(document).ready(function(){
	
	$('a.toggle_collapse').click(function(){
		$(this).next('div').slideUp(400);
		$(this).hide();
		$(this).prev().show();
		this.blur();
		return false;
	});

	$('a.toggle_expand').click(function(){
		$(this).next('a').next('div').slideToggle(400);
		$(this).hide();
		$(this).next('a').show();
		this.blur();
		return false;
	});
	

});