function chOver(obj)
{
	obj.style.backgroundColor = '#DDEEFF'
}

function chOut(obj)
{
	obj.style.backgroundColor = '#FFFFFF'
}

function initVencobbLinks()
{
	document.write('' +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='index.html'>Introduction</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroiler.html'>Vencobb - 100 Broiler</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerBreeder.html'>Vencobb - 100 Breeder</a></div>" +
"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroiler4.html'>Vencobb - 400 Broiler</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerBreeder4.html'>Vencobb - 400 Breeder</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbManagementGuides.html'>Management Guides</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbContact.html'>Contact</a></div>" +
	"<div class='vencobbProductTitle'>Related Reading</div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='../profile/profileStructureVenco.html'>Company Information</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='../profile/profileGenesisVencoVRB.html'>The Genesis of Venco and VRB</a></div>" +
	"<p>Researched in conditions that match those of the markets and supported by advanced genetics, the Vencobb has been well adapted to Indian climatic and management conditions." +
	"<p>Being equipped with a genetic potential to perform well in all regions and situations is what gives the Vencobb its competitive edge."
	)
}

function initVencobbBroilerManagementLinks()
{
	document.write("" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide00.html'>Introduction</a></div>" +
	"<div class='vencobbProductTitle'>Table of Contents</div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide01.html'>Chick Placement</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide02.html'>Water Management</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide03.html'>Housing Space</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide04.html'>Litter and Litter Management</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide05.html'>Brooding</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide06.html'>Feed and Feeding</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide07.html'>Nutrient Levels</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide08.html'>Ventilation</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide09.html'>Lighting</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide10.html'>Vaccine and Vaccination</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide11.html'>Disposal of Dead Birds</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide12.html'>Records</a></div>" +
	"<div class='vencobbProduct' onMouseOver='chOver(this)' onMouseOut='chOut(this)'><a class='vencobbLink' href='vencobbBroilerManagementGuide13.html'>Broiler Performance Criteria</a></div>"
	)
}

window.onload = highlightCurrentPageLink

function highlightCurrentPageLink()
{
	linkArray = document.links
	for (i=0; i<linkArray.length; i++)
	{
		if (linkArray[i].href == document.location.href)
		{
			linkArray[i].className = 'currentPage'
		}
	}
}