/************************ Yatra.com ************************
Copyright: 		www.Yatra.com
Yatra.com 		CSS Framework for Yatra
Author:   		Gulshan Gaur (Yatra.com, Gurgaon{India})
Version:  		1.0
CreatDate: 		Wednesday, 31 December 2008
************************ Yatra.com ************************/
function flight_btn(){
	document.getElementById('flightbtn').src='/international/static/images/landing_images/flighttabon.gif';
	document.getElementById('hotelbtn').src='/international/static/images/landing_images/hoteltaboff.gif';
	document.getElementById('holidaybtn').src='/international/static/images/landing_images/holidaytaboff.gif';	
	document.getElementById('flightpck').style.display="";
	document.getElementById('hotelpck').style.display="none";
	document.getElementById('holidaypck').style.display="none";
	
}
function hotel_btn(){
	document.getElementById('flightbtn').src='/international/static/images/landing_images/flighttaboff.gif';
	document.getElementById('hotelbtn').src='/international/static/images/landing_images/hoteltabon.gif';
	document.getElementById('holidaybtn').src='/international/static/images/landing_images/holidaytaboff.gif';	
	document.getElementById('flightpck').style.display="none";
	document.getElementById('hotelpck').style.display="";
	document.getElementById('holidaypck').style.display="none";
	
}
function holiday_btn(){
	document.getElementById('flightbtn').src='/international/static/images/landing_images/flighttaboff.gif';
	document.getElementById('hotelbtn').src='/international/static/images/landing_images/hoteltaboff.gif';
	document.getElementById('holidaybtn').src='/international/static/images/landing_images/holidaytabon.gif';
	document.getElementById('flightpck').style.display="none";
	document.getElementById('hotelpck').style.display="none";
	document.getElementById('holidaypck').style.display="";
	}


