/* Story Scripts -------------------------------------*/

function fullSizeTab(){
	$('thumb_tab_td').style.background = "#ffffff";	
	$('full_tab_td').style.background = "#cccccc";	
	$('full_act').style.display = 'none';
	$('full_inact').style.display ='block';
	$('full_inact').style.cursor = "";
	$('thumb_act').style.display ='block';
	$('thumb_inact').style.display ='none';
	$('thumb_act').style.cursor ='pointer';
	$('full_inact').style.opacity = "1";
	$('dispimg').style.opacity = "1";


}

function thumbSizeTab(){
	$('full_tab_td').style.background = "#ffffff";	
	$('thumb_tab_td').style.background = "#cccccc";	
	$('full_act').style.display = 'block';
	$('full_act').style.cursor= 'pointer';
	$('full_inact').style.display ='none';
	$('thumb_act').style.display ='none';
	$('thumb_inact').style.display ='block';
	$('thumb_inact').style.cursor ='';
	$('dispimg').style.display = 'none';
	$('thimg').style.display = 'block'; 
	$('thimg').style.position = 'absolute'; 
	$('dispimg').style.left = $('thimg').offsetLeft;
	$('dispimg').style.position = '';
	$('thimg').style.position = ''; 
	$('full_inact').style.opacity = ".4";
	$('dispimg').style.opacity = ".4";
}

function grow2(endX, endY, percent){
			
		var X = 0;
		var Y = 0;
		$('dispimg').style.left = $('dispimg').offsetLeft - $('dispimg').offsetLeft * .05;
		percent = percent + .1; 
		X =  endX * percent;
		$('dispimg').style.width = X;
			
        Y = endY * percent;
		$('dispimg').style.height = Y;
		if(Math.ceil(X) !=  endX){
			setTimeout("grow2( "+ endX + ", " + endY + ", " +  percent + ")", 1);
		}
		else{
			fullSizeTab()
		}
}

function shrink2(endX, endY, percent){
			
		var X = 0;
		var Y = 0;
		$('dispimg').style.left = $('dispimg').offsetLeft + $('dispimg').offsetLeft * .05;
		percent = percent + .1; 
		X =  $('dispimg').width - $('dispimg').width * percent;
		$('dispimg').style.width = X;
			
        Y = $('dispimg').height - $('dispimg').height * percent;
		$('dispimg').style.height = Y;
		$('errwin').innerHTML = X + ", " + endX + " " + percent;				
		if(Math.ceil(X) >=  endX){
			alert("shrink2( "+ endX + ", " + endY + ", " +  percent + ")" );
			shrink2(endX, endY, percent);
		}
		else{
			$('errwin').innerHTML =  "shrink Stopped";
			thumbSizeTab()
		}
}


function next(id, accnum, today){
	var pars = "accnum=" + accnum + "&today=" + today + "&id=" + id;
	new Ajax.Updater('images', 'functions/php/images.php', {asynchronous:true, method:'post', parameters:pars }); 

}

/* End Story Scripts -------------------------------*/