// JavaScript Document
/***************company logo ********////////////////
var m=0;
var n=1200;
var speed=20;
function scrollPics() 
	{
	document.getElementById('div1').style.top=m+'px';
	document.getElementById('div2').style.top=n+'px';
   	m--;
   	n--;
		if(m==-1200) { m=1200; }
		if(n==-1200) { n=1200; }
	setTimeout('scrollPics()',speed);
 	} 
	
var mn=0;
var nn=-1100;
var speedn=20;
function scrollPicsn() 
	{
     document.getElementById('div12').style.top=mn+'px';
     document.getElementById('div22').style.top=nn+'px';
  	 mn++;
  	 nn++;
		if(mn==1100) { mn=-1100; }
		if(nn==1100) { nn=-1100; }
	setTimeout('scrollPicsn()',speedn);
	} 

window.onload=function() 
	{
   		scrollPics();
   		scrollPicsn();
	}
	
/*************************video****************////////////////
function casechange(obj,c)
	{
	
		for(i = 1; i <=12; i++) 
		{	document.getElementById("case"+i).style.display="none";
			document.getElementById("caseb"+i).className="defult";
		}
	
		document.getElementById(obj).style.display="block";
		document.getElementById(c).className="current";
	}
