/* Write here your custom javascript codes */
$('.detail-body img').each(function(){
	if($(window).width() < $(this).width()){
		$(this).attr("width","90%");
		$(this).attr("height","");
	}else{
		$(this).css("max-width","90%");
	}
	
}
);



//多个专题网在同一个位置轮换显示 begin
$(document).ready(function() {

	var now = new Date().getDate();
	//now = 4;
	now %= 4;
	if(now == 0|| now == 1){
		$("#sameSpecialShowChange>a:nth-child(1)").hide(1,function(){ $(this).remove(); });
                $("#sameSpecialShowChange>a:nth-child(2)").show();
	}else{
		$("#sameSpecialShowChange>a:nth-child(1)").show();
                $("#sameSpecialShowChange>a:nth-child(2)").hide(1,function(){ $(this).remove(); });

       }

})


//多个专题网在同一个位置轮换显示 end