$('#content').hide();

 $(function() {
 	$('.imgREPLACE').each(function (i) { if($(this).attr('class')!='') {
 		imgname=$(this).attr('class').split(" ")[1];
 		img=imgname.split("-"); $(this).html("");
 		if(img.length==1) {	$(this).html('<img src="img/'+img[0]+'.png" alt="'+$(this).html()+'"/>'); }
 		if(img.length==3) {	$(this).html('<img src="img/'+img[0]+'.png" style="width:'+img[1]+'px;height:'+img[2]+'px" alt=""/>'); }
 	}});
 	$(document).pngFix();
    $('#over').fadeOut(2000);
	$('a.lightbox').fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
	$(window).bind('resize', function() { $('body').css("display","none"); $('body').css("display","block"); $(document).pngFix(); });
	$("#welcome").fancybox({
				autoDimensions : false,
				autoScale : false,
				scrolling	:	false,
				width		:	600,
				height: 220,
			}).trigger('click');

});
