var last = 1;

$(document).ready(function(){

$("#imgs").slideView({easeTime: 1500});

});

function fadeText(x)
{	
	$("#b-" + last).fadeOut("fast", function()
	{
		last = x;							  
		$("#b-" + (x)).fadeIn("slow");
	});
}
