// JavaScript Document $(function(){ $(".photo_gallery").each(function(){ var _index = $(this).index()+1; if(_index%4 == 0){ $(this).css("margin-right","0px"); } }) $(".photo_gallery1").each(function(){ var _index = $(this).index(); if(_index%3 == 0){ $(this).css("margin-left","0px"); } }) $(".fileImg li").first().css("margin-left","0px") $(".resource_recommend ul li").each(function(){ var _index = $(this).index(); if(_index%3 == 0){ $(this).css("margin-left","0px"); } }) $(".resource_recommend1 ul li").each(function(){ var _index = $(this).index(); if(_index%4 == 0){ $(this).css("margin-left","0px"); } }) $(".resource_recommend1 ul li").eq(5).css("margin-left","61px") $(".resource_recommend1 ul li").eq(6).css("margin-left","15px") $(".outline ul li").last().css("border-bottom","none") $(".outline1 ul li").last().css("border-bottom","none") $(".popu ul li").last().css("border-bottom","none") $(".thee_ul li").last().css("border-bottom","none") $('#property').click(function(){ $(".landRight").show(); $(".landRight1").hide(); $(".landRight2").hide(); $(".landRight3").hide(); }); $('#organization').click(function(){ $(".landRight").hide(); $(".landRight1").show(); $(".landRight2").hide(); $(".landRight3").hide(); }); $('#production').click(function(){ $(".landRight").hide(); $(".landRight1").hide(); $(".landRight2").show(); $(".landRight3").hide(); }); $('#land').click(function(){ $(".landRight").hide(); $(".landRight1").hide(); $(".landRight2").hide(); $(".landRight3").show(); }); })