// MULTITEASER SCRIPT 	$('#multiteaser ul li a').hoverIntent( 		function(){										teaserid = $(this).attr('rel');			$('#multiteaser div.contentbox').each(function(){				if( $(this).attr('id') != teaserid){					$(this).hide();				}			});			$('#multiteaser ul li a').removeClass('hover');				$(this).addClass('hover');			$('#'+teaserid).fadeIn()					},		function(){}		);