$(document).ready(function(){

	// Add lightbox functionality to content images
	if(!$('.fototabel').length) {
		$('#content img').each(function() {
			var link = $(this).attr('src');
			$(this).wrap('<a></a>');
			var a = $(this).parent();
			a.attr('href', link);
			a.addClass('lightbox');
		});
	}
	$('.lightbox .lightbox').removeClass('lightbox');
	
	// Add lightbox control
	$('.lightbox').lightBox({
		maxHeight: 480,
		maxWidth: 640
	});
	
	// Add target to links
	$( '.external' ).click(function() {
		$( this ).attr( 'target', '_blank' );
	});
	
	// Sponsors
	$(document).ready(function() {
		$('.slideshow').cycle({
			fx: 'fade',
			timeout: 5000,
			speed:   1000
		});
	});
	
	// Menu
	var hasChildren = false;
	$( '#menu ul li' ).each(function() {
	
		hasChildren = false;
		$( this ).find( 'ul' ).each(function() {
			hasChildren = true;
			//$( this ).hide();
		});
		
		
		if( hasChildren )
		{
			$( this ).addClass( 'link' );
			
			$( this ).find( '.collapse' ).click(function() {
				var id = '';
				var first = '';
				$( this ).parent().find( 'ul' ).each(function() {
					if( first == '' && $(this).css('display') == 'none' ) first = $(this).find('li a').attr('href');
					$( this ).toggle();
					id = $(this).attr('id');
				});
				$.get("index.php", {item: id }, function(data) {
					if( first != '' ) window.location.href = first;
				});
			});
		}
		
	});
});
