		try{
			if(disableScrollt == null);
		}catch(e){
			var disableScrollt = false;
		}
		var slowslideDeltat=-2;
		var fastslideDeltat=15;
		var slideDeltat=-2;
		if(disableScrollt == true)
			slideDeltat = 0;
		var btnDownt=false;
		var pauseSlidingt=false;
		var prevslideDeltat;
		var tbl1t, tbl2t;
		var listingContainert;
		function scrollButtonUpMousedownt(){
			if(!disableScrollt){
				slideDeltat=Math.abs(fastslideDeltat);
				btnDownt=true;
			}
		}
		function scrollButtonUpMouseupt(){
			if(btnDownt && !disableScrollt){
				slideDeltat=Math.abs(slowslideDeltat);
				btnDownt=false;
			}
		}
		function scrollButtonDownMousedownt(){
			if(!disableScrollt){
				slideDeltat=-Math.abs(fastslideDeltat);
				btnDownt=true;
			}
		}
		function scrollButtonDownMouseupt(){
			if(btnDownt  && !disableScrollt){
				slideDeltat=-Math.abs(slowslideDeltat);
				btnDownt=false;
			}
		}
		function pauset(){
			prevslideDeltat = slideDeltat;
			slideDeltat= 0;
		}
		
		function slidet(){
			slideDeltat= prevslideDeltat;
		}

		function slideTablest(){
			if(slideDeltat>0){
				if(parseInt(tbl1t.style.top)>=tbl2t.offsetHeight)
					tbl1t.style.top=(parseInt(tbl2t.style.top)-tbl1t.offsetHeight)+'px';
				else if(parseInt(tbl2t.style.top)>=tbl1t.offsetHeight)
					tbl2t.style.top=(parseInt(tbl1t.style.top)-tbl2t.offsetHeight)+'px';
			}else{
				if(parseInt(tbl1t.style.top)<=-tbl1t.offsetHeight)
					tbl1t.style.top=(parseInt(tbl2t.style.top)+tbl2t.offsetHeight)+'px';
				else if(parseInt(tbl2t.style.top)<=-tbl2t.offsetHeight)
					tbl2t.style.top=(parseInt(tbl1t.style.top)+tbl1t.offsetHeight)+'px';
			}
			tbl1t.style.top=(parseInt(tbl1t.style.top)+slideDeltat)+'px';
			tbl2t.style.top=(parseInt(tbl2t.style.top)+slideDeltat)+'px';
			setTimeout(slideTablest, 100);
		}
		function initSlidingTablest(){
			listingContainert=document.getElementById('listing-containert');
			tbl1t=document.getElementById('listing-tablet'); 
			if(disableScrollt == true)
				tbl2t=tbl1t.cloneNode(false);
			else
				tbl2t=tbl1t.cloneNode(true);
			document.getElementById('listing-containert').appendChild(tbl2t);
			tbl1t.style.position='absolute';
			tbl2t.style.position='absolute'; 
			tbl1t.style.top='0px';
			tbl2t.style.top=(parseInt(tbl1t.style.top)+tbl1t.offsetHeight)+'px';
			slideTablest();
		}
	setTimeout(initSlidingTablest, 1000);
