// global 
// footer hover effects
function changelink_footer(){
            document.getElementById('footerSwitch').style.color='#FF9933'; 
            document.getElementById('footerBlue').style.color='#00479C'; 
}

function changeback_footer(){
            document.getElementById('footerSwitch').style.color=''; 
            document.getElementById('footerBlue').style.color=''; 
}




function swapImage(thisImage,newImage) {
	if (document.images) {
		document[thisImage].src = eval(newImage + '.src')
	}
}



// our_products.html 
// scrolling div script
function mv2(v){
document.getElementById('logoscroll').scrollLeft=document.getElementById('logoscroll').scrollLeft+v;
}
function mv(v){
tid=setInterval("mv2("+v+")",50);
}
function cl(){
clearInterval(tid);
}





// Golbal (contact page)
// textArea Focus Style
function setbg(color, sID)
	{
		document.getElementById(sID).style.background=color
	}