jQuery(function(){
	if($("#content .wrapper").height() > $("#content").height()){
		$("#scroller").show();
		$("#scroller").css("top", $("#content").position().top + 12);
		$("#scroller").css("left", $("#content").offset().left + $("#content").width() - 12);
	} else {
		$("#scroller").hide();
	}
	
	$("#naam,#email").focus(function(){ if(this.value == this.title){ this.value = ""; } });
	$("#naam,#email").blur(function(){ if(this.value == ""){ this.value = this.title; } });
	
	if($("#carrousel").length > 0){
		$("#carrousel").cycle({speed: 1500});
	}
	return false;

});
function scrollup(){
	if($("div.wrapper").position().top > ($("#content").height() - $("#content div.wrapper").height()) ){
		$("#content div.wrapper").animate( {"top": '-=520'},1000 );
	}
	return false;
}
function scrolldown(){
	if($(".wrapper").position().top < 0){
		$("#content div.wrapper").animate( {"top": '+=520'},1000 );
	}
	return false;
}