function ShowProjectDetail(key, crop, file, type) {

	//sel current image
	$('.Thumbs a').removeClass('Sel');
	$('.Thumbs a#image'+key).addClass('Sel');
	FadeFastSel();

	//load image into container
	showLoading('#DetailContainerLoader');
	$('#DetailContainer').fadeOut('fast', function() {								   
		$.get('/ajx.projectDetail.php', { myCrop: crop, myFile: file, myType: type }, function(data){ 
			$('#DetailContainer').html(data).fadeIn('fast');
			hideLoading();
		})
	});
}
