$(document).ready(function(){
	
	$("ul li:first-child").addClass("firstchild");
	
	$("#submenu ul li a").hover(
		function() {
			$(this).children("img:eq(0)").effect("bounce", { times:1, distance:10 }, 500);
		},
		function() {
			//do nothing
		}
	);
	
	$("#newsflashaddhomeemailaddresfield").focus(function(){
		if($(this).val() == 'email adres') {
			$(this).val("");
		}
	});
	$("#newsflashaddhomeemailaddresfield").blur(function(){
		if($(this).val() == '') {
			$(this).val("email adres");
		}
	});
	
	$(".scroll-pane").jScrollPane({showArrows: true, scrollbarWidth: 15, scrollbarOnLeft: true, dragMaxHeight: 50});
	
	$(".slideshow").slideshow({
		hookPrevious : $("#photo_prev") ,
		hookNext     : $("#photo_next") ,
		fadeTime     : 3000
	});
	
	$(".showtrailerbutton").click(function(){
		$("#trailer").modal();
	});
	
	$(".video_embed_button").click(function(){
		$("#video_embed").modal();
	});
	
	$(".contentimage").fancybox();

	
	$(".stage").click(
		function(){
			var elm = $(this).parents(".progitem:eq(0)").find("div.list_stage");
			if($(elm).is(':hidden')) {
				$("div.list_stage").stop().slideUp();
				$(this).parents(".progitem:eq(0)").find("div.list_stage").slideDown(500);
			}
			return false;
		}
	);
	

});
