function thumbActions() {
	//show and hide the title
	/*
	//old method, delete after review
	$(".unit").hover(function() {
		$(this).children('.info').slideToggle('fast');
		} , function() {
		$(this).children('.info').slideToggle();
	});
	*/
	$(".unit").live('mouseenter', function() {
		$(this).children('.info').stop(true,true).slideToggle('fast');
	});
	$(".unit").live('mouseleave', function() {
		$(this).children('.info').stop(true,true).slideToggle('fast');
	});
	$(".unit a").click(function() {
		$(".unit").children('.info').slideUp('fast');
	});
}

/* = - = - = - = - = - = - = */
/* READY */

$(document).ready(function() {
	thumbActions();
});
