var marqueewidth="300px"
var marqueeheight="246px"
var marqueespeed=1	//Specify the marquee's marquee speed (larger is faster 1-10)
var pauseit=1	//Pause marquee onMousever (0=no. 1=yes)?

//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
var marquee='<span class="black">“This was my first visit to India. I experienced a lot of fantastic things there. I think that we owe what this training course was successfully finished because of A2V assistance”<br><span class="author">- Sumikawa Masato</span> <br> ';
    
    marquee=marquee + ' “Before I came India, I had wanted to been in India, however, I had known nothing about India.But through this programme, I have had many experiences. Today, I am a big fan of India”<br><span class="author">- Takamasa Yotsumoto</span> <br>';
	marquee=marquee + ' “I felt the speediness of Indian business. I learned that we can work smoothly by talking earnestly to one another.I am still poor at English. But I became what I don t hesitate to speak English. I felt India s diversity and became interested in Indian culture much more”<br><span class="author">- Shimpei Kumagai</span> <br>';
	marquee=marquee + ' “I had important experiences, and surprises, throughout the program, pleasurable meetings. They will be my precious network in India for sure. I have acquired grasp of both business culture and living standards in India”<br><span class="author">- Yasumasa Nakai</span> <br>';
	marquee=marquee + ' “Indian people are so active as opposed to Japanese. I felt that Japanese should also be active to win global competition”<br><span class="author">- Masayuki Gomyo</span> <br><br>';
	marquee=marquee + ' “We had a great learning exciting home visit, markets very precious experience. We were able to obtain a valuable result to reinforce a business plan by a visit to India. I think that we owe what this training course was successfully finished because of A2V assistance”<br>';
	marquee=marquee + ' “•	I have to read THE INDIA WAY. However I brought this book from Japan, I could read only 5 pages in India because this program gave me wonderful time every day better than a book!”<br><span class="author">- Takuya Etanio</span> <br>';
	marquee=marquee + ' “Before I came India, I had wanted to been in India, however, I had known nothing about India.But through this programme, I have had many experiences. Today, I am a big fan of India”<br><span class="author">- Takamasa Yotsumoto</span> <br>';
	marquee=marquee + ' “I felt the speediness of Indian business. I learned that we can work smoothly by talking earnestly to one another.I am still poor at English. But I became what I don t hesitate to speak English. I felt India s diversity and became interested in Indian culture much more”<br><span class="author">- Shimpei Kumagai</span> <br>';
	marquee=marquee + ' “I had important experiences, and surprises, throughout the program, pleasurable meetings. They will be my precious network in India for sure. I have acquired grasp of both business culture and living standards in India”<br><span class="author">- Yasumasa Nakai</span> <br>';
	marquee=marquee + ' “Indian people are so active as opposed to Japanese. I felt that Japanese should also be active to win global competition”<br><span class="author">- Masayuki Gomyo</span> <br>';
	marquee=marquee + ' “We had a great learning exciting home visit, markets very precious experience. We were able to obtain a valuable result to reinforce a business plan by a visit to India. I think that we owe what this training course was successfully finished because of A2V assistance”<br>';
	marquee=marquee + ' “•	I have to read THE INDIA WAY. However I brought this book from Japan, I could read only 5 pages in India because this program gave me wonderful time every day better than a book!”<br><span class="author">- Takuya Etanio</span> <br>';



	/*marquee=marquee + ' <img src="images/gbullet.gif"> <a href="xml-tagging-outsourcing.htm">XML Tagging</a> <br></SPAN>';*/	

////NO NEED TO EDIT BELOW THIS LINE////////////

marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee

function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee.style.top=0
cross_marquee.innerHTML=marquee
actualheight=cross_marquee.offsetHeight
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=0
ns_marquee.document.write(marquee)
ns_marquee.document.close()
actualheight=ns_marquee.document.height
}
lefttime=setInterval("scrollmarquee()",75)	//Speed of marquee
}
window.onload=populate

function scrollmarquee()
{
if (iedom){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}
else if (document.layers){
if (ns_marquee.top>(actualheight*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden">')
write('<div id="iemarquee" style="position:absolute;left:0px;top:50px;width:100%;"  onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">')
write('<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=10 top=50 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
write('</ilayer>')
}
}
}

