$(document).ready(function(){
	$('.exdesc').hide();
	$('.hidedesc').hide();
	
	$('.viewdesc').click(function() {
		$(this).parent().children('.exdesc').show('slow');
		$(this).next('.hidedesc').show('fast');
		$(this).hide('fast');
		return false;
	});
	
	$('.hidedesc').click(function() {
		$(this).parent().children('.exdesc').hide('slow');
		$(this).hide('fast');
		$(this).prev('.viewdesc').show('fast');
		return false;
	});
});
