$(document).ready ( function () {
	/* JQ FOLDERS */
	$('.folder-click').each ( function () {
		$(this).hover(
			function() {
				obj = $(this).find('.folder-header');
				var image = "/gfx/site/gui/drop-icon-down-on.png";
				$(obj).css({'cursor' : 'pointer'});
				$(obj).css({"background-image" : "url('"+image+"')","background-repeat" : "no-repeat"});
			},
			function() {
				obj = $(this).find('.folder-header');
				var image = "/gfx/site/gui/drop-icon-down-off.png";
				$(obj).css({"background-image" : "url('"+image+"')","background-repeat" : "no-repeat"});
			}
		);

		$(this).click ( function () {
			  if ($(this).next().is(":hidden")) {
				$(this).next().slideDown("slow");
			  } else {
				$(this).next().slideUp("slow");
			  }
		});
	});
});
