$(document).ready(function(){
	$('div.desc').hide();
	var work = null;

	$('.work').mouseover(function(){
		work = $(this).find('div');
	});
	
	$(this).find('a.details').toggle(function(){
			work.show();
			$(this).text("Hide details");
			return false;
		}, 
		function(){
			work.hide();
			$(this).text("View details");
			return false;	
		});
});
