/*
* Author:      Marco Kuiper (http://www.marcofolio.net/)
*/

$(document).ready(function()
{
	// Hide all the tooltips
	$(".box-hov").each(function() {
		$(".ten1", this).css("opacity", "0");
	});
	
	$(".box-hov").hover(function() { // Mouse over
		$(this)
			.stop().fadeTo(500, 1);		
		$(".ten1", this)
			.stop()
			.animate({
				opacity: 1,
			}, 300);
		
	}, function() { // Mouse out
		$(this)
			.stop().fadeTo(500, 1);
			
		$(".ten1", this)
			.stop()
			.animate({
				opacity: 0,
				}, 300);
	});
	
});
