/*
	-------------------------------------------------
	HTML5, CSS & jQuery 
	by Dominik Ogilvie for Avant la lettre, (c) 2012.
	http://www.avantlalettre.ch/
	-------------------------------------------------
*/

$('#support').cycle({
	fx:      'fade', 
    speed:    1200, 
    timeout:  5000,
    sync:	0,
    pause:    1 
});


// - - - - - - - - - - - - - - -


$(document).ready(function(){


// Sprache eruieren

	var sprache = location.pathname.substring(1, 3);
	
	if (sprache == 'de') {
		var pdfmsg =	unescape('PDF in neuem Fenster %F6ffnen...')
		var contact =	'Kontaktperson'
	} else {
		var pdfmsg = 	unescape('PDF: Ouvrir dans une nouvelle fen%EAtre...')
		var contact =	'personne de contact'
	};
	


// Navigations- und Sitemap-Verhalten

	$('#support a').first().hide();

	$('nav ul ul').hide();
	$('li a.sel').siblings('ul').slideDown();
	$('ul ul li a.sel').parents('ul').show();
	$('ul:hover ul').slideDown();
	
	$('#sitemap').click(function() {
		$('nav ul ul').slideDown('slow');
		$('#sitemap').hide();
		$("nav").addClass("printable");
	});


// Formularfelder bei Bedarf
	
	$('p#partner').hide();
	$('p#organisation').hide();

	$('#entities input:radio').change(function() {
		var auswahl = $('#entities input:radio:checked').val();
  		if (auswahl=='Paar' || auswahl=='Couple') { 
  			$('p#partner').fadeIn(); 
  		} else { 
  			$('p#partner input').val('');
  			$('p#partner').fadeOut(); 
  		}
  		if (auswahl=="Organisation") { 
  			$('p#organisation').fadeIn();
  			$('input[name=name]').attr('placeholder',contact+'...');
  		} else { 
  			$('p#organisation input').val('');
  			$('p#organisation').fadeOut(); 
  			$('input[name=name]').removeAttr('placeholder');
  		}
	});


// PDFs in neuem Fenster šffnen, Tooltip gem. Sprache
	
	$("div a[href$=pdf], div a[href$=PDF]").each(function() {
		$(this).attr('target', '_blank');
		$(this).attr('title', pdfmsg);
	});


// - - - - - - - - - - - - - - -

});

// _____________________________


