
/* - ++resource++museum.theme.javascripts/collections.js - */
$(function() {
	
	$(".featured-clts-item:nth-child(3n)").addClass('third');
	$(".clt-result-set-row:nth-child(even)").addClass('even');
	
	var countClicks = 0;
	$(".clt-detail-image").bind('click', function() {
		countClicks++;
		
		if(countClicks == 0){
				
//				$(this).children('.clt-detail-image-normal').addClass('hidden');
// 				$(this).children('.clt-detail-image-large').removeClass('hidden');
// 				$(this).children('img').css('cursor', 'move');
// 				
// 				
// 				var marginLeft = -($(this).children('.clt-detail-image-large').width()-450)/2;
// 				var marginTop = -($(this).children('.clt-detail-image-large').height()-500)/2;
// 				
// 				$(this).children('.clt-detail-image-large').css('marginLeft',marginLeft);
// 				$(this).children('.clt-detail-image-large').css('marginTop',marginTop);
// 				
// 				$(this).children('.clt-detail-image-large').draggable().bind('dragstart', function(e, ui) {
// 					$(".clt-detail-image").children('.clt-detail-image-large').css('left',marginLeft);
// 					$(".clt-detail-image").children('.clt-detail-image-large').css('top',marginTop);
// 					$(".clt-detail-image").children('.clt-detail-image-large').css('marginLeft',0);
// 					$(".clt-detail-image").children('.clt-detail-image-large').css('marginTop',0);
// 				});
// 				
// 				$(this).children('.clt-detail-image-large').draggable({refreshPositions: true}).bind('dragstop', function(e, ui) {
// 					
// 						if (ui.position.top > 0) {
// 								$(this).css('top', 0);
// 						}
// 						if (ui.position.left > 0) {
// 								$(this).css('left', 0);
// 						}
// 				
// 						var bottom = -($(this).height() - $(this).parent().height()),
// 						right  = -($(this).width() - $(this).parent().width());
// 				
// 						if (ui.position.top < bottom) {
// 								$(this).css('top', bottom);
// 						}
// 						if (ui.position.left < right) {
// 								$(this).css('left', right);
// 						}
// 				});

		}
		
		if(countClicks == 1){
// 			$(".clt-detail-image").children('.clt-detail-image-large').css('marginLeft',0);
// 			$(".clt-detail-image").children('.clt-detail-image-large').css('marginTop',0);
// 			$(".clt-detail-image").children('.clt-detail-image-large').css('left',0);
// 			$(".clt-detail-image").children('.clt-detail-image-large').css('top',0);
//			$(this).children('.clt-detail-image-large').draggable( 'destroy' );
		}

		
	});

})



