$(document).ready(function () {

// Start search form script
$(".searchformfield").focus(function () {
	if ($(this).val() === $(this).attr("title")) {
		$(this).val("");
	}
}).blur(function () {
	if ($(this).val() === "") {
		$(this).val($(this).attr("title"));
	}
	});
// End search form script




// Start background illustratie script

function addOrRemoveClass(){
	if($(window).width() < 1000){	$('#wrap').addClass('smaller');	}
	if($(window).width() > 1000){	$('#wrap').removeClass('smaller');	}
}

addOrRemoveClass();  //onload

$(window).resize(function() { // check if the browserwindow is resized
	addOrRemoveClass();
});


// End background illustratie script





});
