// JavaScript Document
var rightBlockSelect = "";
var rightBlockSelect_pos = "";
function right_block_orver(_tdObj,pos,_Template){
	if (rightBlockSelect != _tdObj){
		_tdObj.style.backgroundImage = "url(images/right_block_"+ pos +"_over.jpg)";		
		_tdObj.style.color = "#02478f";
	}
}
function right_block_select(_tdObj,pos,_url,_Template){
	if (rightBlockSelect != _tdObj){
		_tdObj.style.backgroundImage = "url(images/right_block_"+ pos +"_select.jpg)";		
		_tdObj.style.color = "#ffffff";
		
		if (rightBlockSelect !=""){			
			rightBlockSelect.style.backgroundImage = "url(images/right_block_"+ rightBlockSelect_pos +".jpg)";
			rightBlockSelect.style.color = "#3a689d";
		}
		rightBlockSelect = _tdObj;
		rightBlockSelect_pos = pos;
		ajaxLoad(_url,"rightBlockContent");
	}
}
function right_block_out(_tdObj,pos,_Template){
	if (rightBlockSelect != _tdObj){
		_tdObj.style.backgroundImage = "url(images/right_block_"+ pos +".jpg)";
		_tdObj.style.color = "#3a689d";
	}
}
