/* ---------------------------------------------------- 

	JS - INIT

------------------------------------------------------- */

/* HIDE EMAIL ADDRESSES
------------------------------------------------------- */
$(document).ready(function () {
	$('.mailme').mailme();
});


/* CAROUSEL HOMEPAGE
------------------------------------------------------- */
$(document).ready(function () {	
	if($('#branding ul li').size()>1){
		$('#branding ul li:gt(0)').hide();
			setInterval(function(){
				$('#branding ul li:first').fadeOut('slow')
					.next('li').fadeIn('fast')
					.end().appendTo('#branding ul');}, 
			6000); 
	}	
});


/* PUT LABELS IN FORM ELEMENTS
------------------------------------------------------- */
$(document).ready(function () {
	$(".nieuwsbrief label").hide();
	$(".nieuwsbrief input[type=text]").labelify({
		text: "label"
	});	
});


/* FOTOS
------------------------------------------------------- */
$(document).ready(function () {
  $('.fotos-page li:odd').css('margin-right', '0');
  $('.fotos-page li a').hover(
    function() {
      $(this).next('div').addClass('highlight');
    },
    function() {
      $(this).next().removeClass('highlight');
    }
  ); 
});


/* FOTOS DETAIL
------------------------------------------------------- */
$(document).ready(function () {
  $('.fotos-detail li:nth-child(4n)').css('margin-right', '0');
});

/* AGENDA DETAIL
------------------------------------------------------- */
$(document).ready(function () {
  $('.agenda-detail .praktisch li:nth-child(2n)').addClass('odd');
});
