

/*
Tabs Menu (mouseover)- By Dynamic Drive
For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
This credit MUST stay intact for use
*/

var submenu=new Array()

//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
 
submenu[0]='<div class="ta_tabcon"><div class="in"><h1>Tata AIG General Insurance Company Limited</h1><p>Offers a broad array of general insurance products to individuals,associations and businesses of all sizes. Tata AIG General is a joint venture between Tata Group and American International Group, Inc. (AIG).&nbsp;&nbsp;<a href="aboutus.jsp">Read more...</a></p></div></div>'

submenu[1]='<div class="ta_product"><div class="in"><h1>Tata AIG General Insurance Products</h1><p class="hd"><a href ="/tagic/Individual/individual.jsp">Individual Products</a></p><p>Motor, Accident and Health, Travel and Home</p><p class="hd"><a href="/tagic/smallbusiness/smallbusiness.jsp">Small Business Solutions</a></p><p>Society, Office, Package, Educational, Hotels, Shops</p><p class="hd"><a href = "/tagic/Corporate/corporate.jsp">Corporate</a></p><p>Accident and Health, Travel, Energy, Property, Fleet, Liability, Cargo, Corporate Risk Solutions Group</p></div></div>'

submenu[2]='<div class="ta_indv"><div class="in"><h1>Individual Products</h1><p>"Every stage of life, you are open to immense risk and immense opportunity. and Tata AIG has the ideal bouquet of insurance products for each of those risks and opportunities."</p><div class="divde"><ul><li><a href= "/tagic/Individual/motor/motor.jsp">Motor</a></li><li><a href= "/tagic/Individual/home/home.jsp">Home</a></li></ul></div><div class="divde"><ul><li><a href = "/tagic/Individual/Accident/Accident.jsp">Accident & Health</a></li><li><a href ="/tagic/Individual/travel/travel.jsp">Travel</a></li></ul></div><div class="clr"></div></div></div>'

submenu[3]='<div class="ta_sbs"><div class="in"><h1>Small Business Solutions</h1><p>The "Small Business Solutions" division would cater to the requirements of small businesses through a Multiline Package Policy.</p><div class="divde"><ul><li><a href= "/tagic/smallbusiness/societypolicy/societypolicy.jsp">Society Policy</a></li><li><a href= "/tagic/smallbusiness/officepolicy/officepolicy.jsp">Office Policy</a></li><li><a href= "/tagic/smallbusiness/packagepolicy/packagepolicy.jsp">Package Policy</a></li></ul></div><div class="divde"><ul><li><a href = "/tagic/smallbusiness/education_ins/education_ins.jsp">Educational Institutes Insurance</a></li><li><a href ="/tagic/smallbusiness/hotel_ins/hotel_ins.jsp">Hotel & Restaurant Insurance</a></li><li><a href ="/tagic/smallbusiness/shop_ins/shop_ins.jsp">Shop Insurance</a></li></ul></div><div class="clr"></div></div></div>'

submenu[4]='<div class="ta_corp"><div class="in"><h1>Corporate Products</h1><p>"From blue chips to local marketers, whatever the size of your business, Tata AIG has the insurance you are looking for."</p><div class="divde"><ul><li><a href= "/tagic/Corporate/Accident/Accident.jsp">Accident and Health</a></li><li><a href= "/tagic/Corporate/Travel/travel.jsp">Travel</a></li><li><a href= "/tagic/Corporate/Energy/energy.jsp">Energy</a></li><li><a href= "/tagic/Corporate/Property/property.jsp">Property</a></li></ul></div><div class="divde"><ul><li><a href = "/tagic/Corporate/Marine/marine.jsp">Marine Cargo</a></li><li><a href ="/tagic/Corporate/Liability/liability.jsp">Liability</a></li><li><a href ="/tagic/Corporate/Corp_Fleet/corporate_fleet.jsp">Corporate Fleet</a></ul></div></div></div>'


//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

//function resetit(e){
//if (document.all&&!menuobj.contains(e.toElement))
//delayhide=setTimeout("showit(-1)",delay_hide)
//else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
//delayhide=setTimeout("showit(-1)",delay_hide)
//}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
