
			function changeBorderS(objRow, mouseState) {			
				if (mouseState == 'over') {
						bClass = 'foto_main_over';            
				}
				else if (mouseState == 'down') {
						bClass = 'foto_main_down';            
				}
				else if (mouseState == 'out') {
						bClass = 'foto_def';            
				}
				
				objRow.className = bClass;
			}

			function changeBorderT(objRow, mouseState) {			
				if (mouseState == 'over') {
						bClass = 'thumb_box_over';            
				}
				else if (mouseState == 'down') {
						bClass = 'thumb_box_down';            
				}
				else if (mouseState == 'out') {
						bClass = 'thumb_box';            
				}
				
				objRow.className = bClass;
			}

