﻿DM_swpImg_init = function(){
	var i;
	var j = 0;
	for(i=0; i<document.getElementsByTagName("a").length; i++){
		if(document.getElementsByTagName("a")[i].getAttribute('rel') == 'DM_SWPIMG'){
			orgHref = document.getElementsByTagName("a")[i].getAttribute('href');
			newEvent = 'DM_swpImg("' + orgHref + '")';
			document.getElementsByTagName("a")[i].setAttribute('href', 'javascript:void(0);');
			if(navigator.appName != "Netscape"){
				// For IE
				document.getElementsByTagName("a")[i].setAttribute('onclick', new Function(newEvent));
			}else{
				// For FF
				document.getElementsByTagName("a")[i].setAttribute('onclick', newEvent);
			}
			if(j==0){
				$("#org_main_pic").html('<img src="' + orgHref + '" alt="" />');
				j++;
			}
		}
	}
}

DM_swpImg = function(tgtURI){
	$("#org_main_pic").fadeIn("normal", DM_loadImg(tgtURI));
}

DM_appearImg = function(){
	$("#org_main_pic").fadeOut("normal");
}

DM_loadImg = function(tgtURI){
	$("#org_main_pic").html('<img src="' + tgtURI + '" alt="" />');
	DM_appearImg();
}