<!-- Featured Shoe Random Image Script Begins -->
function create() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.mouseover = ''
}
ads = new Array()
for(var i=0; i<4; i++) { ads[i] = new create() }

ads[0].width = "820"
ads[0].height = "275"
ads[0].src = "/images/widescreen_005.jpg"
ads[0].href = "/catalog/all"
ads[0].border = "0"
ads[0].mouseover = "MADELiNE Fall 2007 Collection"
ads[0].sponsor = ""

ads[1].width = "820"
ads[1].height = "275"
ads[1].src = "/images/widescreen_006.jpg"
ads[1].href = "/catalog/all"
ads[1].border = "0"
ads[1].mouseover = "MADELiNE Fall 2007 Collection"
ads[1].sponsor = ""

ads[2].width = "820"
ads[2].height = "275"
ads[2].src = "/images/widescreen_007.jpg"
ads[2].href = "/catalog/all"
ads[2].border = "0"
ads[2].mouseover = "MADELiNE Fall 2007 Collection"
ads[2].sponsor = ""

ads[3].width = "820"
ads[3].height = "275"
ads[3].src = "/images/widescreen_008.jpg"
ads[3].href = "/catalog/all"
ads[3].border = "0"
ads[3].mouseover = "MADELiNE Fall 2007 Collection"
ads[3].sponsor = ""

var n = Math.floor(Math.random()*4);

var image = ads[n]
var ad = ""
ad += '<a href="' + image.href + '" \n'
ad += 'onMouseOver="self.status=\'' + image.mouseover + '\'\;return true" \n'
ad += 'onMouseOut="self.status=\'\'"> \n'
ad += '<img src="' + image.src + '" width=' + image.width
ad += '\n height=' + image.height + ' border=' + image.border
ad += '\n>' + image.sponsor + '</a>'

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}