$(function(){
	
	$("a[rel='gallery']").colorbox({
		slideshow:true,
		slideshowAuto: false,
		slideshowSpeed: 3000
	});

	$(".image a[rel='gallery']").mouseenter(function(){		
	
		var curEle = $(this);
	
		oldLeft = $(this).position().left;
		oldTop = $(this).position().top;
		oldWidth = $(this).width();	
		oldHeight = $(this).height();

		newHeight = Math.ceil(oldHeight * 4);
		newWidth = Math.ceil(oldWidth * 4);
		
		newLeft = Math.ceil(oldLeft - ((newWidth - oldWidth) / 2));
		newTop = Math.ceil(oldTop - ((newHeight - oldHeight) / 2)) - 100;			
		
		$(this).clone(true).unbind('mouseenter').addClass('tempImage').css({
			position: 'absolute',
			left: newLeft + 'px',
			top: newTop + 'px',
			border: '2px solid #000',
			display: 'none'
		}).appendTo('body').attr('rel', 'gallery').stop().fadeIn('fast').mouseleave(function(){
			$('.tempImage').stop().fadeOut('fast', function(){$(this).remove()});	
		});
	});;
	
	$(".image a[rel='gallery']").mouseleave(function(){
		//$('.tempImage').remove();	
		
	})
	
	
	
})
