$(document).ready(function() {
  $('a[rel^="external"]').bind('click',function() { window.open(this.href); return false; });
});

$(document).ready(function() {
	//$('#slideshow-gallery').html("<a href='#' rel='lightbox[1]' name='slide0'><img src='img/slides/slide-1.jpg' alt='1. Interior' /></a><a href='#' rel='lightbox[1]' name='slide1'><img src='img/slides/slide-2.jpg' alt='2' /></a>");
	$("a[rel^='lightbox']").prettyPhoto();
	slideShow();
	initForm();
});

function slideShow() {
	$('#slideshow-gallery a').hide();
	$('#slideshow-gallery a:first').show().addClass('show');
	window.slideShowInterval=setInterval('gallery()',6000);
}

function gallery() {
	var current = ($('#slideshow-gallery a.show')?  $('#slideshow-gallery a.show') : $('#slideshow-gallery a:first'));
	var next = ((current.next().length) ? current.next() : $('#slideshow-gallery a:first'));
	next.addClass('show').fadeIn('slow');
	current.fadeOut('slow').removeClass('show');
}

function initForm() {
    $('#name').bind('click',function() { if (this.value=='naam') this.value='' });
    $('#email').bind('click',function() { if (this.value=='e-mail adres') this.value='' });
    $('#phone').bind('click',function() { if (this.value=='telefoon') this.value='' });
    $('#comments').bind('click',function() { if (this.value=='vraag / opmerkingen') this.value='' });
    $('#_captcha').bind('click',function() { if (this.value=='captcha code') this.value='' });
}
