

<!--
// preload image
var NewsListBackground = new Image();
NewsListBackground.src = "http://www.fashiontelevision.com/images/style/styles/bkgrnd_newslist.gif";
            
var ArchiveListBackground = new Image();
ArchiveListBackground.src = "http://www.fashiontelevision.com/images/style/styles/bkgrnd_newslist_long.gif";
           
var RightColList = new Image();
RightColList.src = "http://www.fashiontelevision.com/images/style/styles/bkgrnd_rightcollist_on.gif";
         
//-->

function changeCss(obj) {
    switch (obj.className) {
    case "NewsList":
          obj.className="NewsList Hover";
         break;   
    case "NewsList Hover":
          obj.className="NewsList";
         break;
    case "NewsList Open":
          obj.className="NewsList Open Hover";
         break;
    case "NewsList Open Hover":
          obj.className="NewsList Open";
         break;
    default:
          obj.className="NewsList";
    } 
}
function changeGridCss(obj) {
    switch (obj.className) {
    case "ColLayout":
          obj.className="ColLayout Hover";
         break;
    case "ColLayout Hover":
          obj.className="ColLayout";
         break;
    default:
          obj.className="ColLayout";
    } 
}
function goToURL(url) {
    document.location.href=url;
}



