<!--

// random script for homepage
var hp = new Array(3)
	hp[0]="/images/section/img_home_1a.jpg"
	hp[1]="/images/section/img_home_1b.jpg"
	hp[2]="/images/section/img_home_1c.jpg"	

var now = new Date()
var sec = now.getSeconds()
var hpart = hp[sec % 3]

//-->

<!--

// random script for homepage background
var hpbg = new Array(3)
	hpbg[0]="/images/section/img_home_2a.jpg"
	hpbg[1]="/images/section/img_home_2b.jpg"
	hpbg[2]="/images/section/img_home_2c.jpg"	

var now = new Date()
var sec = now.getSeconds()
var hpartbg = hpbg[sec % 3]
//-->

<!--

// random script for inside pages
var inside = new Array(4)
	inside[0]="/images/section/img_inside_1.jpg"
	inside[1]="/images/section/img_inside_2.jpg"
	inside[2]="/images/section/img_inside_3.jpg"	
	inside[3]="/images/section/img_inside_4.jpg"

var now = new Date()
var sec = now.getSeconds()
var insideart = inside[sec % 4]
//-->

<!--

// random script for inside pages
var insidebg = new Array(4)
	insidebg[0]="/images/section/img_inside_5.jpg"
	insidebg[1]="/images/section/img_inside_6.jpg"
	insidebg[2]="/images/section/img_inside_7.jpg"
	insidebg[3]="/images/section/img_inside_8.jpg"

var now = new Date()
var sec = now.getSeconds()
var insideartbg = insidebg[sec % 4]
//-->