$(function() {
	$('select, input:checkbox, input:radio, input:file').uniform();
	
	$('#slideshow').slideshow('SITE', {
		slider: {
			buttons: false,
			transition: 'fade',
			interval: 7000
		}
	});
	
	$('.section.event.detail .map').fancybox({
		'width'			: '85%',
		'height'		: '85%',
		'autoscale'		: 'false',
		'type'			: 'iframe'
	});
	
	// $eventDetails = $('.section.event.detail .details');
	// 	$eventDetails
	// 		.prepend('<ul />')
	// 		.children('div:not(\'.nav\')')
	// 			.each(function() {
	// 				var $this = $(this);
	// 				var id = $this.attr('class');
	// 		
	// 				$this.attr('id', id);
	// 				$('.section.event.detail .details > ul').append('<li class="' + id + '"><a href="#' + id + '">' + id.charAt(0).toUpperCase() + id.slice(1) + '</a></li>');
	// 				
	// 				$('.section.event.detail .details > ul > li:not(:last-child)').append(' / ');
	// 				
	// 				$this.children('.title').remove();
	// 			}).end()
	// 			.tabs();
});
