// JavaScript Document

$(document).ready(function(){
						   $(".index_contert1 > div:gt(0)").hide();						  
						  /*Í¼Æ¬µã»÷*/
						  $(".por_text_li").css({"overflow":"hidden","height":"295px"});/**/
						  $("#test_tab_index dd:gt(7)").hide();
						  $(".por_p img").toggle(function(){
														 $("#test_tab_index dd").fadeIn();
														 $(this).attr({src:"windows/images/pod_more1.gif"});
														 $(".por_text_li").css({"overflow":"visible","height":"auto"});
														},function(){
															$("#test_tab_index dd:gt(7)").fadeOut();
															$(this).attr({src:"windows/images/pod_more.gif"});
															$(".por_text_li").css({"overflow":"hidden","height":"295px"});
														});
						   });
				  
