$(document).ready(function()
{
	$(".item").hoverIntent({
		sensitivity: 3, 
		interval: 150, 
		over: showIt, 
		timeout: 1200, 
		out: hideIt
	});
})


function showIt()
{
	$id = $(this).attr('id');	
	$(this).css("border-bottom", "none");
	$('.hover-'+$id).slideToggle(400);	
}

function hideIt()
{
	$id = $(this).attr('id');
	$('.hover-'+$id).slideToggle(400, function(){										 
		$id = $(this).attr('id');
		$('.item-'+$id).css("border-bottom", "1px solid #FBAE38");
	});
}