var listabig = [];

$(document).ready(function(){
	$('#thumbs div div a.photo').hover(
		function() {
			var newBigImage = 'themes/clocwatches/p_eggs/' + $(this).attr('id');
			listabig.push(newBigImage);
			switchImage();
		},
		function() {}
	);

	function switchImage() {
		var theBigImage = $('#bigpic img');
		var currentBigImage = $('#bigpic img').attr('src');
		while (listabig.length >0){
		    var newBigImage = listabig.pop();
			if (newBigImage != currentBigImage) {
				theBigImage.fadeOut(250, function(){
					theBigImage.attr('src', newBigImage).fadeIn(250);
				});
			}
		}
	}

});

