$(document).ready(function() {

	$('a.new-window').click(function() {
		window.open(this.href);
		return false;
	});
	
	$('input#f_DDV').click(function() {
		$('#f_IDDDV').toggle(400);
	});
	
	
	// handla v prijavnem delu odpiranje zavihkov
	$('.trigger .close').click(function() {
			$(this).parent().next('ul').toggle();
			$(this).toggleClass('open');
	});
		
	$('#closeAll').click(function() {
		if ($('#closeAll').html() == "Close all") {
			$('.attendees_container').hide();
			$('.trigger').find('.close').removeClass("open");
			$('#closeAll').text("Open all");
		} else {
			$('.attendees_container').show();
			$('.trigger').find('.close').addClass("open");
			$('#closeAll').text("Close all");
		}
	});
	
	
	if ($('#gallery').length == 1) {
		$('#gallery a').lightbox();
	}
	
	$("#banner01").flash({
		swf: '/Static/swf/banner01.swf',
		height: 73,
		width: 442
	});
	
	$("#banner02").flash({
		swf: '/Static/swf/banner02.swf',
		height: 73,
		width: 442
	});
	
	if ($('#flash-module').length == 1) {
		$('#flash-module').html(myFlash);
	}

});





