// Croydon Cats Protection 2010.
// Date: 12th July 2010.
// Amalgamated all scripts into one file.

var preloadFlag = false;
userAgent = window.navigator.userAgent;
browserVersion= parseInt(userAgent.charAt(userAgent.indexOf("/")+1),10);

function showButtons()
{
	document.write( "<img id=image1  onClick=\"window.location='php/homesWanted.php' ;\" onMouseOver=\"document.getElementById('image1').src='images/homes-wanted2.jpg' ;\" onMouseOut=\"document.getElementById('image1').src='images/homes-wanted.jpg' ;\" src=\"images/homes-wanted.jpg\" alt=\"Homes Wanted\" name=\"cats_for_homing\" height=21 width=128 border=0 >" );
	
	document.write( "	<img id=image2 onClick=\"window.location='php/lostFound.php' ;\"  onMouseOver=\"document.getElementById('image2').src='images/lost-cats2.jpg' ;\"  onMouseOut=\"document.getElementById('image2').src='images/lost-cats.jpg' ;\" src='images/lost-cats.jpg' alt='Lost Cats' name='cats_lost' height=21 width=87 border=0 >" );
			
	document.write( "<img id=image3 onClick=\"window.location='supporters.html' ;\" onMouseOver=\"document.getElementById('image3').src='images/get-involved2.jpg' ;\" onMouseOut=\"document.getElementById('image3').src='images/get-involved.jpg' ;\"   src='images/get-involved.jpg' alt='Get Involved' name='get_involved' height='21' width='111' border=0 >" );

}

var url = window.location;
if( url.hostname == "localhost" ){
	var site="http://localhost/cats2010/";
}
else  var site = "http://" + url.hostname + "/";

function doNav()
{
	doNavLinks();	
	doNavForms();	
	doNavOther();
}

function doNavForms()
{
	var forms = new Array(
	"Neutering-Vouchers", "php/formVoucher.php",
	"I've Lost My Cat", "php/formLostFound.php",	
	"Offer A Home", "php/formHoming.php",
	"Contact Us", "php/feedback.php"
	);
		document.writeln( "<br><span style='font-weight: bolder; font-variant: small-caps; '>Online Forms</span>" );
	for( x = 0; x< forms.length; x+=2 ){
		document.writeln( "<a style='margin-left: 7px; ' href=" + site + forms[x+1] + ">" + forms[x] );
		document.writeln( "</a><br>" );
	}
}

function doNavLinks()
{
	var links = new Array(
		"Our Branch", "index.html",
		"Anatomy of cats", "anatomy.html", 
		"Contacts", "contacts.html", 
		"Donations", "donations.html", "Events", "events.html",
		"Feral Cats", "ferals.html",  
		"Fostering", "fostering.html", "Found Cats", "php/lostFound.php?menu=found",	"Fundraising", "fundraising.html", 
		"Homes Wanted", "php/homesWanted.php", "Homing-info", "aboutHoming.html",		
		"Links", "links.html",  "Lost Cats", "php/lostFound.php?menu=lost",	
		"Membership", "membership.html", 
		"Our charity shop", "shop.html", "Older Cats", "oldercats.html",
		"Sponsorship", "sponsorship.html", "Supporters", "supporters.html", 
		"Volunteering", "volunteering.html", "Who are we?", "intro.html"
	);

	for( x = 0; x< links.length; x+=2 ){
		if( x==0 ) document.write( "<span style='font-weight: bolder; font-variant: small-caps;'>" );
		document.write( "<a style='margin-left: 7px;' href=" + site + links[x+1] + ">" + links[x] + "</a>" );
		if( x==0 ) document.write( "</span>" );
		document.write( "<br>" );
	}
}

function doNavOther()
{
	document.writeln( "<br><span style='font-weight: bolder; font-variant: small-caps;'>cp hq</span><br>");
	document.writeln( "<a style='margin-left: 7px;' href='http://www.cats.org.uk' target=_blank>HQ homepage</a><br>" );
	document.writeln( "<a style='margin-left: 7px;' href='http://www.cats.org.uk/find-us/' target=_blank>Other Branches</a><br>");
}

function doAnatomy()
{
document.write( "<map name='tomcat'>" )
document.write( "<area shape=rect coords='230,86,251,142' alt='Ears - hearing'  href='a-ears.html' title='Hearing'>"  )
document.write( "<area shape=rect coords='249,147,263,124' alt='Eyes - vision'   href='a-eye.html' title='Vision'>"   )
document.write( "<area coords='268,150,274,137' alt='Nose - sense of smell' href='a-nose.html' title='Smell'>"  )
document.write( "<area coords='235,156,275,168' alt='Mouth - feeding habits' href='a-mouth.html' title='Eating'>" )
document.write( "<area coords='295,161,329,196' alt='Feet' href='a-feet.html' title='Feet' >"  )
document.write( "<area coords='72,177,115,190' alt='Feet' href='a-feet.html' title='Feet'>"  )
document.write( "<area coords='83,197,130,221' alt='Feet' href='a-feet.html' title='Feet'>"  )
document.write( "<area coords='3,-2,49,71' alt='Tail - balancing' href='a-tail.html' title='Balacing'>"  )
document.write( "<area coords='5,73,40,114' alt='Scent Glands' href='a-anus.html' title='Scent Glands'>"  )
document.write( "<area coords='96,157,138,177' alt='Stomach - eating habits' href='a-stomach.html' title='Eating'>" )
document.write( "<area coords='53,54,139,125'   alt='Fur - coat' href='a-fur.html' title='Coat/Fur'>" )
document.write( "</map>" )
}

// End of Script.