function SignOfZodiac (dansk,engelsk,start,slut,billede){    this.dansk     = dansk    this.engelsk   = engelsk    this.start     = start    this.slut      = slut    this.billede   = billede}var TheZodiac = new Array()TheZodiac[TheZodiac.length] = new SignOfZodiac ("vaedderen","aries",2103,2004,"MorEllco1032096788.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("tyren","taurus",2104,2105,"MorEllco1032096848.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("tvillingerne","gemini",2205,2106,"MorEllco1032096892.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("krebsen","cancer",2206,2207,"MorEllco1032096932.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("loeven","leo",2307,2308,"MorEllco1032096977.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("jomfruen","virgo",2408,2309,"MorEllco1032097016.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("vaegten","libra",2409,2310,"MorEllco1032097077.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("skorpionen","scorpio",2410,2211,"MorEllco1031911023.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("skytten","sagitarius",2311,2112,"MorEllco1031911173.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("stenbukken","capricorn",2212,2001,"MorEllco1031911220.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("vandmanden","aquarius",2101,1802,"MorEllco1032096690.jpg")TheZodiac[TheZodiac.length] = new SignOfZodiac ("fiskene","pisces",1902,2003,"MorEllco1032096741.jpg")var DagCount = new Array (0,31,59,90,120,151,181,212,243,273,304,334,366)var DagsDato = new Date() ; var Dagen ; var Maanedenvar ifor (i=0 ; i<TheZodiac.length ; i++){    Dagen    = Math.floor(TheZodiac[i].start/100)    Maaneden = TheZodiac[i].start - (Dagen*100)    TheZodiac[i].start = DagCount[Maaneden]+Dagen    Dagen    = Math.floor(TheZodiac[i].slut/100)    Maaneden = TheZodiac[i].slut - (Dagen*100)    TheZodiac[i].slut  = DagCount[Maaneden]+Dagen    if (TheZodiac[i].start > TheZodiac[i].slut) TheZodiac[i].slut += 366}var DagNummer = DagCount[DagsDato.getMonth()]+DagsDato.getDate()var fundet = 0for (i=0 ; i<TheZodiac.length ; i++){    if ( TheZodiac[i].start <= DagNummer && DagNummer <= TheZodiac[i].slut ) fundet = i    if ( TheZodiac[i].start <= DagNummer+366 && DagNummer+366 <= TheZodiac[i].slut ) fundet = i}var theElement = document.getElementById("siden")theElement.style.backgroundRepeat = "no-repeat"theElement.style.backgroundPosition = "50% 50%"theElement.style.backgroundImage  = "url(/Kalender/baggrunde/"+TheZodiac[fundet].billede+")"
