

jQuery(function($){
	$('.info-box-container').each(function(numTeaser) {
		var text = $(this).one('mouseenter', function (e) {
			clearTimeout(infoBoxHideTimeout);
		}).find('.text');
		var infoBoxHideTimeout = setTimeout(function () {
			text.fadeOut('medium');
		}, 2000);
	}).hover(function (e) {
		$(this).find('.text').fadeIn('medium');
	}, function (e) {
		$(this).find('.text').fadeOut('medium');
	});


	// ie hover
	$('.iehover').hover(function (e) {
		$(this).addClass('hover');
	}, function (e) {
		$(this).removeClass('hover');
	});

});

