

var preloader = Array();
	$(function(){ 
		$('.thumbset a')
		.css({opacity:0.5})
		.hover(
			function(){ $(this).stop().animate({opacity:1},200); },
			function(){ $(this).animate({opacity:0.5},200); }
		)
		.click(function(e){ 
			e.preventDefault();
			var md_img = $(this).attr('href');
			$('#slideshow').css({backgroundImage:'url('+md_img+')'});
		})
		.each(function(index) {
			var a = new Image;
			a.src = $(this).attr('href');		
			preloader[index] = a;
		});
	});

