$(window).load(function(){
	// preload images
	for(i=0; topImages.length > i; i++) {
		$.preLoadImages(topImages[i])
	}
	
	// content image processing (fanxybox, caption, maginifier)
	$("#content img").each(function () {
		var img = $(this);
			
		// not already linked
		if (img.parents('a').size() == 0) {
			
			$.getJSON("/site/imgInfo.php", {src: img.attr('src')}, function(data) {
				if (data.isCmsImage) {
					
					// title
					var title = img.attr('alt');
					if (title.length > 1) 
						title = title + ' - ';
					
					// caption
					img.caption({
						'attr'     : 'alt',
						'bgColor'  : '#000000',
						'bgOpacity': 0.60
					});
									
					// link
					var link = $("<a href='"+ data.fullPath + "' class='fancybox'></a>");
					img.before(link);
					img.remove();
					img.appendTo(link);
					
					// fancybox
					link.fancybox({
						'overlayOpacity': 0.6,
						'overlayColor'  : '#000000',
						'titlePosition' : 'over',
						'titleFormat'   : function() { return "<span id='fancybox-title-over'>" + title + "Flere bilder i <a href='http://www.nomek.as/pub/cms14.html'>bildegalleriet</a>.</span>"; }
					});
					
					// zoomtip
					img.zoomtip();
				}
			});
		}
		
		
	});
		
	$('#gallery a').fancybox({
		'overlayOpacity': 0.6,
		'overlayColor'  : '#000000',
		'titlePosition' : 'over'
	});
	
	
	
	$('.galimg').zoomtip();
	
	// change top
	setTimeout("changeTop()",7500); 
});
