/**
 * JS
 * @author Darío Ruellan <druellan@ecimtech.com>
 * @copyright ecimTech 2009
 */

$(function()
{
	// AUTOMAP
	var map = $("#automap");
	$("area", map).hover(function()
	{
		var name = $(this).attr("alt");
		$(".detail."+name, map).css("width", 0).animate(
		{
			display: 'block',
			width: 200
		});
	}, function()
	{
		var name = $(this).attr("alt");
		$(".detail."+name, map).stop('false','true').fadeOut();
	});
	
});

