﻿//Javascript for Entire Site
//Note: Any javascripts defined in this file will affect across the entire site
//***** Added By MM 12 Oct 2009
//var autoScroll;
//var winWidth;
//var docWidth;

//function scrollToCenter()
//{
//    if (navigator.appName.indexOf("Microsoft")!=-1)
//    {
//        winWidth = document.documentElement.clientWidth;
//        docWidth = document.documentElement.scrollWidth;
//    }
//    else
//    {
//        winWidth = document.documentElement.clientWidth
//        docWidth = document.documentElement.scrollWidth;
//    }
//    if (winWidth<docWidth && docWidth>1000)
//    {
//        autoScroll=setInterval(scrolling,5)
//    }
//}
//function scrolling()
//{
//    if (document.documentElement.scrollLeft < Number(Number(docWidth-winWidth)/2) )
//    {
//        document.documentElement.scrollLeft = document.documentElement.scrollLeft + Number(Number(docWidth-winWidth)/2)/50;
//    }
//    else
//    {
//        clearInterval(autoScroll);
//    }
//}
//***** End of Adding By MM 12 Oct 2009