// JavaScript Document

// Distributed by http://www.hypergurl.com

// Scrollers width here (in pixels)
var scrollerwidth="260px"

// Scrollers height here
var scrollerheight="68px"

// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=1



// Scrollers content goes here! Keep all of the message on the same line!
var scrollercontent='<a href="viagra.html" class="index_link_blue">Viagra 100Mg (Sildenafil Citrate)</a><br><a href="amoxicillin.html" class="index_link_blue">Amoxicillin 500Mg (Amoxicillin)</a><br><a href="tadalafil.html" class="index_link_blue">Tadalafil 20Mg (Tadalafil)</a><br><a href="propecia.html" class="index_link_blue">Propecia 1Mg (Finasteride)</a><br><a href="amoxil.html" class="index_link_blue">Amoxil 500Mg (Amoxicillin)</a><br><a href="aldara.html" class="index_link_blue">Aldara 5% Cream (Imiquimod)</a><br><a href="viagra.html" class="index_link_blue">Viagra 50Mg (Sildenafil Citrate)</a><br><a href="lexapro.html" class="index_link_blue">Lexapro 20Mg (Escitalopram)</a><br><a href="lotrel.html" class="index_link_blue">Lotrel 5Mg - 10Mg<br><span style="padding-left:5px;">(Amlodipine-Benazepril)</span></a><br><a href="effexor.html" class="index_link_blue">Effexor Xr 150Mg (Venlafaxine)</a><br><a href="doryx.html" class="index_link_blue">Doryx 100Mg (Doxycycline)</a><br><a href="zithromax.html" class="index_link_blue">Zithromax 250Mg (Azithromycin)</a><br><a href="proventil.html" class="index_link_blue">Proventil 100Mcg 200 Doses Aerosol <br><span style="padding-left:5px;">Inhaler (Albuterol (Salbutamol))</span></a><br><a href="zovirax.html" class="index_link_blue">Zovirax 400Mg (Acyclovir)</a><br><a href="elavil.html" class="index_link_blue">Elavil 50Mg (Amitriptyline)</a><br><a href="flomax.html" class="index_link_blue">Flomax 0.4Mg (Tamsulosin)</a><br><a href="singulair.html" class="index_link_blue">Singulair 10Mg (Montelukast)</a><br><a href="wellbutrin.html" class="index_link_blue">Wellbutrin Sr 150Mg  (Bupropion)</a><br><a href="norvasc.html" class="index_link_blue">Norvasc 10Mg (Amlodipine)</a><br><a href="levitra.html" class="index_link_blue">Levitra 20Mg (Vardenafil)</a>'

var pauseit=1

// Change nothing below!

scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
var copyspeed=scrollerspeed
var iedom=document.all||document.getElementById
var actualheight=''
var cross_scroller, ns_scroller
var pausespeed=(pauseit==0)? copyspeed: 0

function populate(){
if (iedom){
cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
cross_scroller.innerHTML=scrollercontent
actualheight=cross_scroller.offsetHeight
}
else if (document.layers){
ns_scroller=document.ns_scroller.document.ns_scroller2
ns_scroller.top=parseInt(scrollerheight)+8
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualheight=ns_scroller.document.height
}
lefttime=setInterval("scrollscroller()",20)
}
window.onload=populate

function scrollscroller(){

if (iedom){
if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
else
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
}
else if (document.layers){
if (ns_scroller.top>(actualheight*(-1)+8))
ns_scroller.top-=copyspeed
else
ns_scroller.top=parseInt(scrollerheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed">')
write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">')
write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>')
write('</ilayer>')
}
}
}