$(document).ready(function() {

	$('.categorie').click(function(){
		if( $(this).parent().children('ul').is(":hidden") )
		{
			$('.categorie').parent().children('ul').slideUp(500);
			$(this).parent().children('ul').slideDown(500);
		}
		else
		{
			$(this).parent().children('ul').slideUp(500);
		}

		return false;
	});

	// Preview afbeeldingen van foto's tonen
	$('.preview').tooltip({
		delay: 0,
		showURL: false,
		bodyHandler: function() {
			if( this.name != '' )
			{
				return $('<img/>').attr('src', this.name);
			}
		}
	});
});
