if(Drupal.jsEnabled){
 $(document).ready(function() {
/* adds extra content into h1 heading on about us pages */
		var $currentH1Content = $("#mainTitle h1").html();
//		alert($currentH1Content);
		if ($currentH1Content == 'About us' || $currentH1Content == 'About Us') {
			$("#mainTitle h1").html('About Us <a href="/about_us/staff_contacts" class="about_h1_a">Staff Contacts</a> <a href="/getting-there" class="about_h1_a">How To Find Us</a>');
		}
		if ($currentH1Content == 'Exhibitions') {
			$("#mainTitle h1").css("padding","0");
		}
	});

  $(document).ready(function() {
		$("#btn_aquatic_centre").mouseenter (function(){
				$(this).css("opacity","0");
				$(this).css("padding","0");
				$(this).css("margin","0");
				$(this).css("width","210px");
				$(this).css("height","33px");
				$(this).animate({"opacity" : "100"}, "slow");
				$("#btn_aquatic_centre").html('<a href="http://terauparaha-arena.co.nz/Aquatic-Centre" target="_blank"><img src="/sites/default/themes/pataka/img/aquatic-centre.jpg" alt="Aquatic Centre" /></a>');
		}).mouseleave(function(){
				$(this).css("padding","5px");
				$(this).css("margin","0");
				$(this).css("width","200px");
				$(this).css("height","23px");
				$(this).css("opacity","100");
				$("#btn_aquatic_centre").html('<a href="http://terauparaha-arena.co.nz/Aquatic-Centre" target="_blank">Also as part of our complex<br /><span class="orangetxt">Aquatic Centre Swimming Pool</span></a>');
		});
  });

  $(document).ready(function() {
		$("#btn_porirua_library").mouseenter (function(){
				$("#btn_porirua_library").html('<a href="http://library.pcc.govt.nz" target="_blank"><img src="/sites/default/themes/pataka/img/pcc-library.jpg" alt="Porirua Library" /></a>');
				$(this).css("opacity","0");
				$(this).css("padding","0");
				$(this).css("margin","0");
				$(this).css("width","213px");
				$(this).css("height","33px");
				$(this).animate({"opacity" : "100"}, "slow");
		}).mouseleave(function(){
				$("#btn_porirua_library").html('<a href="http://library.pcc.govt.nz" target="_blank">Also as part of our complex<br /><span class="redtxt">Porirua City Library</span></a>');
				$(this).css("padding","5px");
				$(this).css("margin","0");
				$(this).css("width","203px");
				$(this).css("height","23px");
				$(this).css("opacity","100");
		});
  });

  $(document).ready(function() {
		$("#btn_te_rauparaha_arena").mouseenter (function(){
				$("#btn_te_rauparaha_arena").html('<a href="http://terauparaha-arena.co.nz/" target="_blank"><img src="/sites/default/themes/pataka/img/Te-Rauparaha-Arena-.jpg" alt="Te Rauparaha Arena" /></a>');
				$(this).css("opacity","0");
				$(this).css("padding","0");
				$(this).css("margin","0");
				$(this).css("width","170px");
				$(this).css("height","33px");
				$(this).animate({"opacity" : "100"}, "slow");
		}).mouseleave(function(){
				$("#btn_te_rauparaha_arena").html('<a href="http://terauparaha-arena.co.nz/" target="_blank"><span class="orangetxt">Also as part of our complex</span><br />Te Rauparaha Arena</a>');
				$(this).css("padding","5px");
				$(this).css("margin","0");
				$(this).css("width","160px");
				$(this).css("height","23px");
				$(this).css("opacity","100");
		});
  });

  $(document).ready(function() {
		$("#btn_kaizan_cafe").mouseenter (function(){
				$("#btn_kaizan_cafe").html('<a href="/image/tid/4" target="_blank"><img src="/sites/default/themes/pataka/img/Kaizen-Cafe.jpg" alt="Kaizen Cafe" /></a>');
				$(this).css("opacity","0");
				$(this).css("padding","0");
				$(this).css("margin","0");
				$(this).css("width","170px");
				$(this).css("height","33px");
				$(this).animate({"opacity" : "100"}, "slow");
		}).mouseleave(function(){
				$("#btn_kaizan_cafe").html('<a href="/image/tid/4"><span class="redtxt">Also as part of our complex</span><br />Kaizan Cafe</a>');
				$(this).css("padding","5px");
				$(this).css("margin","0");
				$(this).css("width","160px");
				$(this).css("height","23px");
				$(this).css("opacity","100");
		});
  });

}


