  $(document).ready(
				function(){
					$('#news').innerfade({
						animationtype: 'slide',
						speed: 750,
						timeout: 2000,
						type: 'random',
						containerheight: '1em'
					});
					
					$('ul#portfolio').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '260px'
					});
					
					$('.fade').innerfade({
						speed: 1000,
						timeout: 6000,
						type: 'random_start',
						containerheight: '1.5em'
					});
					
					$('.adi').innerfade({
						speed: 'slow',
						timeout: 5000,
						type: 'random',
						containerheight: '150px'
					});
					
					
	// Check if map exists
	if($('#heerlijk_map')) {
		// Loop through each AREA in the imagemap
		$('#heerlijk_map area').each(function() {
	
			// Assigning an action to the mouseover event
			$(this).mouseover(function(e) {
				var home_id = $(this).attr('id').replace('area_', '');
				$('#'+home_id).fadeIn('medium');
			});
			
			// Assigning an action to the mouseout event
			$(this).mouseout(function(e) {
				var home_id = $(this).attr('id').replace('area_', '');
				$('#'+home_id).fadeOut('medium');
			});
				
		});
	}

			
			
			
			});

