// JQUERY 4 LIFE
// je moeder 
function searchAlert () {
	$(".search-alert").fadeIn("fast");
}
function searchAlertHide () {
	$(".search-alert").fadeOut("fast");	
}
function readMore () {
	$("#sub-1").fadeOut("fast", function() {
		$("#sub-2").fadeIn("fast");
	});	
}
function readLess () {
	$("#sub-2").fadeOut("fast", function() {
		$("#sub-1").fadeIn("fast");
	});	
}
