function changeDiveye(id){
   	 for(var d=1;d<3;d++){
		 //document.getElementById('dynTit'+d).className='';
		 document.getElementById('dynList'+d).style.display='none';
	 }
	 //document.getElementById('dynTit'+id).className='hover';
	 document.getElementById('dynList'+id).style.display='block';
}

function weekFun(id){
   var dt=document.getElementById('saleDiv').getElementsByTagName('dt');
   var dd=document.getElementById('saleDiv').getElementsByTagName('dd');
   for(var t=0;t<dt.length;t++){
	  dd[t].style.display='none';
	  dt[t].style.background='url(../images/dashed.gif) repeat-x left bottom';
   }
   dt[id-1].style.background='none';
   dd[id-1].style.display='block';
}

function changeDiv2(id){
		var len=getId('colorBtn').getElementsByTagName('dl');
		for(var i=1; i<len.length+1; i++){
			getId('colorCon'+i).style.display='none';
		}
		getId('colorCon'+id).style.display='block';
	}
