// JavaScript Document

var current_img = '#textDiv0';
var tcurrent_img = '#textDiv0';
$(document).ready(function(){
	 
	$('#solutions_container a').mouseout(function() { tcurrent_img = current_img; swapImage(5000, current_img, '#textDiv0'); } );	

	$('#btn_default1').mouseover(function() { swapImage(0, current_img, '#textDiv1'); } );
	$('#btn_default2').mouseover(function() { swapImage(0, current_img, '#textDiv2'); } );
	$('#btn_default3').mouseover(function() { swapImage(0, current_img, '#textDiv3'); } );
	$('#btn_default4').mouseover(function() { swapImage(0, current_img, '#textDiv4'); } );
	$('#btn_default5').mouseover(function() { swapImage(0, current_img, '#textDiv5'); } );
	$('#btn_default6').mouseover(function() { swapImage(0, current_img, '#textDiv6'); } );
});

var timeout;
function swapImage(delay, old_img, new_img)
{
	window.clearTimeout(timeout);
	if(new_img != current_img)
	{
		current_img = new_img;
		timeout = setTimeout(function() { 
		restoreImage(new_img);
		}, delay);
	}
}

function restoreImage(new_img)
{
	$('#textDiv0').hide(0);
	$('#textDiv1').hide(0);
	$('#textDiv2').hide(0);
	$('#textDiv3').hide(0);
	$('#textDiv4').hide(0);
	$('#textDiv5').hide(0);
	$('#textDiv6').hide(0);
	$(new_img).show(0);
}

