// splash pagina
$(document).ready(function() {
	$("#folies a").hover(
      function () {
        $("#girl2").addClass("girl2on");
      }, 
      function () {
        $("#girl2").removeClass("girl2on");
      }
    );
	
	$("#pheadra a").hover(
      function () {
        $("#girl1").addClass("girl1on");
      }, 
      function () {
        $("#girl1").removeClass("girl1on");
      }
    );

});

// afbeelding vergroten
$(document).ready(function() {
	// put all your jQuery goodness in here.
	showPhoto("1");
	
	$("#mycarousel li a").click(function (){
		$("#mycarousel li a").removeClass("in");
		$(this).addClass("in");		
		myImg = $(this).attr("href").replace("#", "");
		
		showPhoto(myImg);
		// $("#photo_big img").attr("src", myImg);
		return false;
    });
});

function showPhoto(deze){
	$("#photo_big div").hide();
	$("#foto"+deze).show();
}

// submit
function submitMe(dit){
	$(dit).submit();
}
