google_ad_client = "pub-6739834733860804";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "2B93DA";
google_color_bg = "FFFFFF";
google_color_link = "000000";
google_color_url = "2B93DA";
google_color_text = "000000";

/****************************************************
*	        DOM Image rollover:
*		by Chris Poole
*		http://chrispoole.com
*               Script featured on http://www.dynamicdrive.com
*		Keep this notice intact to use it :-)
****************************************************/
var arrImgB = new Array();
var arrImgA = new Array();

if (document.images) {
	var arr = new Array("home", "tpc", "overzicht", "contact");
	for (i = 0; i <= (arr.length-1); i++) {
		arrImgB[i] = new Image();
		arrImgB[i].src = "gfx/bt_" + arr[i] + ".gif";
		arrImgA[i] = new Image();
		arrImgA[i].src = "gfx/bt_up_" + arr[i] + ".gif";
	}
}
function change2(e){
	var el=window.event? event.srcElement: e.target
	for (var i=0; i < arrImgB.length; i++) {
		if (el.tagName == "IMG" && el.src == arrImgB[i].src) {
			el.src = arrImgA[i].src;
		}else if(el.tagName == "IMG" && el.src == arrImgA[i].src) {
			el.src = arrImgB[i].src;
		}
	}
}