	var cur_selected;
	function SGalChangePhoto(photo_html, small_img){
		obj_td = GetObj('big_f');
		obj_td.innerHTML = photo_html;
		
		obj_prev = GetObj(cur_selected);
		obj_prev.style.border = '0';

		obj_current = GetObj(small_img);			
		obj_current.style.border = '0';
		
		cur_selected = small_img;
	}
	
	
	var DOM = (typeof(document.getElementById) != 'undefined');

function GetObj(objId){
	if(!DOM) return false;	
	return document.getElementById(objId);
}


	var cur_selected_1;
	function SGalChangePhoto_1(photo_html, small_img){
		obj_td = GetObj('big_f_1');
		obj_td.innerHTML = photo_html;
		
		obj_prev = GetObj(cur_selected_1);
		obj_prev.style.border = '0';

		obj_current = GetObj(small_img);			
		obj_current.style.border = '1px solid #9999d1';
		
		cur_selected_1 = small_img;
	}
	
	
	var DOM = (typeof(document.getElementById) != 'undefined');
