<!-- Begin

function get_random()
{
    var ranNum= Math.floor(Math.random()*5)
    return ranNum;
}

var whichQuote=get_random()
   
var quote=new Array(5)
     quote[0]="I produce art, not mass market items - It\'s essential that each piece of fabric retains the passion and energy synonymous with my work"
     quote[1]="...that's what I want to do - create unique accessories that because they are produced in small batches are more affordable, but still limited enough to be unique"
     quote[2]="Harlot and Stormcloud are like sisters - one is the outrageous (self proclaimed) hussy and the other is moody and reserved. They fight alot and I have to keep them separated. "   
     quote[3]="Scarves are the perfect gift  because they always have the rights size, they always fit and they don't have to slavishly coordinate with every outfit!"
     quote[4]="You should buy a scarf. Seriously. I'll be sad if you don't and you wouldn't want that. Would you?"

var Promo_Text=quote[whichQuote]

document.write(Promo_Text) 



// end -->