//顶部下拉菜单
function MM_showHideLayers() 
{
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) 
if ((obj=document.getElementById(args[i]))!=null)
      { v=args[i+2];
         if (obj.style) 
        { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
         obj.visibility=v;
       }
}

//字体变化大小
function doZoom(size){
		var textbody = document.getElementById('textbody');
		if(!textbody){
			return;
		}
		var textbodyChild = textbody.childNodes;
		textbody.style.fontSize = size + 'px';
		//再对artibody div内的直接html节点设置fontSize属性
		for(var i = 0; i < textbodyChild.length; i++){
			if(textbodyChild[i].nodeType == 1){
				textbodyChild[i].style.fontSize = size + 'px';
			}
		}		
	}
	
	
//鼠标经过图片
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}	

function addFav(){
	if (document.all) {
	      window.external.addFavorite(window.location.href,'重庆摄协网');
	   }
	   else if (window.sidebar) {
	      window.sidebar.addPanel('重庆摄协网', window.location.href, "");
	   }
}




$(document).ready(function(){
	$(".top2 a").bind("click",function(){
		 if (document.all) {
		      window.external.addFavorite(window.location.href,'重庆摄协网');
		   }
		   else if (window.sidebar) {
		      window.sidebar.addPanel('重庆摄协网', window.location.href, "");
		   }
	});
	
	$(".article_content img").each(function(i){
		if($(this).width() > 600){
			var tempBL = ($(this).width() -600) / $(this).width();
			$(this).css("height",$(this).height()* (1- tempBL))
		}
		$(this).css("width",$(this).width() > 600 ? 600:$(this).width() );
		
	});
	
	$(".left_Photo img").each(function(i){
		if($(this).width() > 600){
			var tempBL = ($(this).width() -600) / $(this).width();
			$(this).css("height",$(this).height()* (1- tempBL))
		}
		$(this).css("width",$(this).width() > 600 ? 600:$(this).width() );
		
	});
	
	$(".Photo_detailcontent img").each(function(i){
		if($(this).width() > 600){
			var tempBL = ($(this).width() -600) / $(this).width();
			$(this).css("height",$(this).height()* (1- tempBL))
		}
		$(this).css("width",$(this).width() > 600 ? 600:$(this).width() );
		
	});
	
	$(".top1 a").attr("href","mailto:wanglei@joinlin.com");
	
	
	var browser=navigator.appName;
	var b_version=navigator.appVersion;
	var version=b_version.split(";"); 
	//var trim_Version=version[1].replace(/[ ]/g,""); 
	//if(browser=="Microsoft Internet Explorer" && trim_Version=="MSIE6.0"){
	//	DD_belatedPNG.fix('img,.logo,.f_left,.img');
	//}
});




