$(document).ready(function() {
		       
	//Bens show hide code
	$('a.show_hide_handel').each(function(){      
		$(this).bind({     
			click: function(){
				event.preventDefault ? event.preventDefault() : event.returnValue = false;
				var handel_id = $(this).attr('id');
				var pos = handel_id.indexOf('_');
				var id = handel_id.substr(pos, handel_id.length);
				$('#expand' + id).slideToggle();
			}
		});	
	});

});
