$(document).ready(function() {
	
	$('#homeImg img').load(function() {
		
		var ref = $(this).parent();
		$(this).remove();
		
		ref.queue(function() {
			setTimeout(function() {
				ref.dequeue();
			},2000);
		});
		ref.fadeOut(2000,function(){
			ref.remove();
		});
		
	})
	
	
	// IMAGES OVERLAY
	$("div.imgbox a").fancybox({
		'hideOnContentClick': true,
		'overlayShow': true,
		'overlayOpacity': 0.8
	});
	
	// SubFolders MouseOver
	$("div#subfolders div").hover(function(){
		$(this).css('background-color','#B9D473');	
	},function(){
		$(this).css('background-color','#A7C950');			
	});
	
});
