// JavaScript Document
// Distributed by http://www.hypergurl.com
// Scrollers width here (in pixels)
var scrollerwidth="248px"

// Scrollers height here
var scrollerheight="135px"

// 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='<left><font color="#40A629">Integrated Development Of Four Mega Destinations/Circuits</font><br /><br />During&nbsp;the second quarter of 2008-09 Ministry of Tourism has sanctioned integrated development of following four mega destinations/circuits in the country&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /><font color="#1C69B1">AP to develop tourist spot at Nizamsagar</font><br /><br />The power situation in Kerala this year is going to be grim as with the water storage as on date in the reservoirs of hydroelectric projects in the State, only 2,700 million units could be generated as against 3,900 million&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /><font color="#40A629">Ministry of Tourism Regional Thematic Conferences:Responsible Tourism for Inclusive Growth</font><br /><br />Ministry of Tourism has associated with UNDP, host State Tourism Departments, leading international and national experts, the global tourism industry and principal stakeholders, to hold a Global Conference on the contemporary subject of Responsible Tourism for Inclusive Growth in December 2008&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a> <br /><br /><font color="#1C69B1">AP to focus on adventure, eco tourism</font><br /><br />With no heritage site on its tourism menu and having no advantage of being in the Delhi-Agra-Jaipur circuit, Andhra Pradesh has decided to bank on innovative products such as adventure and eco tourism&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /><font color="#40A629">India urges nations not to issue travel advisories</font><br /><br />has asked countries not to issue travel advisories against it going by the recent&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /><font color="#1C69B1">Ambika Soni calls for united efforts against cross border terrorism and networks of criminals activities on the occasion of PATA Travel Mart, 2008</font><br /><br />PATA TRAVEL MART 2008 began in Hyderabad today. It was formally inaugurated by the union tourism and culture minister Smt. Ambika Soni and Minister of Tourism, Government of Andhra Pradesh Shri Anam Ramnarayan Reddy&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /> <font color="#40A629">Jharkhand Tourism to focus on safe tourism practices</font><br /><br />Jharkhand Tourism, which aims at promoting Adventure Tourism in order to attract and engage the youth, is now paying special emphasis on the safety and security aspect of various tourism practices&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /> <font color="#1C69B1">Foreign Tourist Arrivals (FTAs) and Foreign Exchange Earnings (FEE) from Tourism in India during August 2008 and Comparative Figures of 2006 and 2007</font><br /><br />Foreign Tourist Arrivals (FTAs) and Foreign Exchange Earnings (FEE) from Tourism in India during August 2008 and Comparative Figures of 2006 and 2007&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /><font color="#40A629">Rajasthan to promote Bandit Tourism</font><br /><br />Rajasthan has embarked on an innovative concept of tapping into the untouched bandit-prone areas of the state, such as the Chambal Valley and use the services of ex-bandits as local guides in and around the place&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /><font color="#1C69B1">Goa Tourism creates blue print for Regional Plan 2021</font><br /><br />Goa Tourism has decided to revamp its image by adding many more products and aspects to its tourism portfolio&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><br /><br /><font color="#40A629">Punjab Tourism to set up aquarium cum awareness centre at Ropar</font><br /><br />The Department of Tourism, Punjab, in order to develop Ropar as a tourist destination, will set up world class aquarium cum awareness centre in Fish Seed Farm, Katli, on the bank of river Satluj&nbsp;&nbsp;&raquo;&nbsp;<a href="#" target="_blank" class="sub_text">read more</a><left>';

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>')
	}
  }
}