//UDMv3.0.2
function hit_days() {  

var message=new Array()
var linebreak=new Array()

message[1]="We (<b>Eric, Jeroen, Liesbeth, Marcel and Kees</b>) are back from our latest bicycle adventure through Laos, Cambodia and Thailand."

message[2]="The travelogues of our trips can be found on the site."

message[3]="The pages containing practical info are kept up-to-date."

message[4]="Most recently added is information on the countries we visited. Here you will find everything about visas, overland bordercrossing, travelling by bicycles and general info on each country.<br><br><br> If you still have questions regarding your bicycle adventure in SE Asia let us know by using the Guest book. We will help you as good as possible." 

message[5]="Do you want to know who we are take a look at the recently added tv-item about or first trip."

message[6]="<b>For our next adventure keep an eye on the site.</b>"

//add new messages here

//add as many messages as you want, but remember 
//to add the '+messgae[x]+' into the document write part.

//the linebreak is the break in between the lines of text, change this to suit marquee
linebreak="<br><br>"

//change direction
//left, right, up, down
var direction='up'

//change speed 1=slow 10=fast
var speed=1

//change marquee's width
var marqueewidth=450

//change marquee's height
var marqueeheight=100

//change backgoround color
var bgcolor='#FBE1E1'

//change behaviour scroll, slide
var action=scroll

//change text style here
var style="'color:#240EA8; font-size:1px; font-family:Arial,Helvetica,Geneva,Swiss,SunSans-Regular;'"

//add new message variables here. e.g. 'message[x]+'
if (document.all)
document.write('<marquee direction='+direction+' scrollAmount='+speed+' width='+marqueewidth+' height='+marqueeheight+' bgcolor='+bgcolor+' behaviour='+action+'><font-style='+style+'> '+message[1]+' '+linebreak+' '+message[2]+' '+linebreak+' '+message[3]+' '+linebreak+' '+message[4]+' '+linebreak+' '+message[5]+' '+linebreak+' '+message[6]+' '+linebreak+'</font></marquee>')
}
