var thisPageAdd = document.location.href;

$(document).ready(function(){
	var myThumbList = $('ul#otherPhotoList>li>img');
	
	myThumbList.bind('click', function(ev){
		setOtherPhoto($(this));
		//$.fn.setADBanner(thisPageAdd);
		return false;
	});
	
	function setOtherPhoto(img){
		var myNum = img.attr('alt');
		var idName = "externalInterface";
		(navigator.appName.indexOf("Microsoft") != -1) ? window[idName].setPhoto(myNum) : document[idName].setPhoto(myNum);
	};
});

function fromFlashCall(myNum){
	//$.fn.setADBanner(thisPageAdd);
};
