jQuery(function(){
	Cufon.replace('h3');
	
	$('.popup').prepend('<div class="arrow"></div>');

	$('.step').hover(function() {
		$(this).css('z-index',1);
		$(this).children('.popup').css('z-index',1000).fadeIn();
	}, function() {
		$(this).css('z-index',0);
		$(this).children('.popup').css('z-index',1).hide();
	});
	
});
