// <![CDATA[
/*************************************************************************
  This code is from Dynamic Web Coding at dyn-web.com
  Copyright 2001-5 by Sharon Paine 
  See Terms of Use at www.dyn-web.com/bus/terms.html
  regarding conditions under which you may use this code.
  This notice must be retained in the code as is!
*************************************************************************/

// for preloading images
imageHandler.path = "/images/banners/left";
// put images to preload here
imageHandler.preload("1.jpg","2.jpg","3.jpg","4.jpg");

function initBanner() {
    if ( !document.getElementById ) return;
    // arguments: id, delay (amount of time in milliseconds you linger on each item)
    // set up pause onmouseover and resume onmouseout? (boolean) 
    var ban1 = new dw_Banner('bannerDivLeft', 7000, true);
	var ban2 = new dw_Banner('bannerDivRight', 7000, true);
	
    // put your items here
    ban1.addItem('<a href="http://www.blacklionfurniture.com/detail.aspx?ID=23633"><img src="images/banners/left/1.jpg" border="0" style="border: 1px #000 solid;" width="148" height="148" alt="" /></a>');
	ban1.addItem('<a href="http://www.blacklionfurniture.com/detail.aspx?ID=18546"><img src="images/banners/left/2.jpg" border="0" style="border: 1px #000 solid;" width="148" height="148" alt="" /></a>');
	ban1.addItem('<a href="http://www.blacklionfurniture.com/detail.aspx?ID=26901"><img src="images/banners/left/3.jpg" border="0" style="border: 1px #000 solid;" width="148" height="148" alt="" /></a>');
	ban1.addItem('<a href="http://www.blacklionfurniture.com/detail.aspx?ID=20717"><img src="images/banners/left/4.jpg" border="0" style="border: 1px #000 solid;" width="148" height="148" alt="" /></a>');
	
	ban2.addItem('<a href="http://www.blacklionfurniture.com/detail.aspx?ID=23391"><img src="images/banners/right/1.jpg" border="0" style="border: 1px #000 solid;" width="148" height="148" alt="" /></a>');
	ban2.addItem('<a href="http://www.blacklionfurniture.com/detail.aspx?ID=19100"><img src="images/banners/right/2.jpg" border="0" style="border: 1px #000 solid;" width="148" height="148" alt="" /></a>');
	ban2.addItem('<a href="http://www.blacklionfurniture.com/detail.aspx?ID=22347"><img src="images/banners/right/3.jpg" border="0" style="border: 1px #000 solid;" width="148" height="148" alt="" /></a>');
	ban2.addItem('<a href="http://www.blacklionfurniture.com/detail.aspx?ID=21108"><img src="images/banners/right/4.jpg" border="0" style="border: 1px #000 solid;" width="148" height="148" alt="" /></a>');
	
    
	
	
    
    ban1.rotate();  // Begin the rotation 
	ban2.rotate();  // Begin the rotation 
	
	
	
	
}

initBanner();

// in case not opened by presenting doc
function displayCodeInfo(id) {
    function getPath(pn) {
        return pn.slice(0, pn.lastIndexOf("/") + 1);
    }

    if ( !window.opener || getPath(window.opener.location.pathname) != getPath(window.location.pathname) ) {
        var el = document.getElementById? document.getElementById(id): null;
        if (el) el.style.display = "block";
    }
}

displayCodeInfo('ref');
// ]]>