Most of the answers here are like shooting a fly with a canon !!
$('#thumbs img').click(function(){
$('#largeImage').attr('src',$(this).attr('src').replace('thumb','large'));
$('#description').html($(this).attr('alt'));
});
this is all you need .. 4 lines of code .
look here : gallery-in-4-lines