$(function(){
	
	$('#categories li').hover(function(){
		$('img',this).show();
	},function(){
		$('img',this).hide();
	});
		
	$('#thumbs a').click(function(){
		return false;
	});
	
	$('#thumbs a').click(function(){
		$('#image img').get(0).src = $(this).get(0).href;
		$('#image p').html(this.title);
		return false;
	});
	
	/*$('#description a').click(function(){
		window.open(this.href,"","width=400,height=480,scrollbars=no, resizable=no, top=280,left=200");
		return false;
	});*/
	
});




