$(document).ready(function() {
	
	// IMAGES OVERLAY
	$("div.imgbox a").fancybox({
		'hideOnContentClick': true,
		'overlayShow': true,
		'overlayOpacity': 0.8
	});
	
	// SubFolders MouseOver
	$("div#subfolders div").hover(function(){
		$(this).css('background-color','#F0C640');	
	},function(){
		$(this).css('background-color','#EEE');			
	});
	
});

