// copyright Rod Morelos http://rod.rant-on.net
// Modified by JanW
var timer = 2000;
var infoTimeout;

var janw = {

	// disable annoying opera 7 tooltip (opera 7 uses 'href' as a tooltip if no 'title' attribute present)
	noOpera7Tooltips: function()
	{
		var lnk = document.getElementsByTagName ? document.getElementsByTagName('a') : null;
		if (lnk && bw.op7)
		{
			for (var l = 0; lnk[l]; l++)
			{
				if (!lnk[l].getAttribute('title')) lnk[l].setAttribute('title', ' ');
			}
		}
	},

	// this disables internet exporer 6's image toolbar when you hover your mouse over an image.
	// to permanently disable the image toolbar, go to 'internet options' > 'advanced' > un-click 'enable image toolbar'.
	noImageToolBar: function()
	{
		var img = document.getElementsByTagName ? document.getElementsByTagName('img') : document.images ? document.images : null;
		if (img)
		{
			for (var i = img.length - 1; i > 0; i--)
			{
				img[i].setAttribute('galleryimg', 'no');
			}
		}
	},


	preloadImages: function()
	{
		var img = document.getElementsByTagName ? document.getElementsByTagName('img') : document.images ? document.images : null;
		if (img)
		{
			for (var i = img.length - 1; i > 0; i--)
			{
				naam = 'image' + i
				naam  = new Image;
				naam.src = img[i]
			}
		}
	},


	noFocus: function() // Plus mouseovers (JanW 20051019)
	{
		var lnk = document.getElementsByTagName ? document.getElementsByTagName('a') : document.links ? document.links : null;
		if (lnk)
		{
			for (var l = 0; lnk[l]; l++){ 
				lnk[l].onfocus = function() { this.blur(); }
				if (lnk[l].className == 'image'){
					lnk[l].onmouseover = function(){ this.childNodes[0].className = 'thumb_over'; }
					lnk[l].onmouseout = function(){ this.childNodes[0].className = 'thumb'; }
				}
			}
		}
	},

	mailen: function()
	{
		obj1 = document.getElementById("mail1");
		if (obj1) {
			obj1.onclick=function() {
				safeEmail('erik', 'footvolleygroningen');
				return false;
			}
		}
		obj2 = document.getElementById("mail2");
		if (obj2) {
			obj2.onclick=function() {
				safeEmail('janw', 'footvolleygroningen');
				return false;
			}
		}
		obj3 = document.getElementById("mail3");
		if (obj3) {
			obj3.onclick=function() {
				safeEmail('jaap', 'footvolleygroningen');
				return false;
			}
		}
		obj4 = document.getElementById("mail4");
		if (obj4) {
			obj4.onclick=function() {
				safeEmail('piet', 'footvolleygroningen');
				return false;
			}
		}
		
	},
	
	mp3: function() {
		obj1 = document.getElementById("mp3");
var wnd;
        if (obj1) {
			obj1.onclick=function() {
				if (wnd){
//				if (wnd) {
					wnd.focus();
					} else {
					wnd = window.open(this.href, 'Sounds of Footvolley' , 'width=300, height=300, top=0, left=0');
					wnd.focus();
				}
				return false;
			}
		}
	},

	nomp3: function(){
		obj2 = document.getElementById("nomp3");
var wnd;
        if (obj2) {
			obj2.onclick=function() {
				if (wnd){
					wnd.close();
					window.refresh();
					return false;
				}
			}
		}
		
	},

	start: function()
	{
		janw.noFocus();
		janw.noOpera7Tooltips();
		janw.noImageToolBar();
		iPop.AutoApply();
		janw.mailen();
		janw.mp3();
		janw.nomp3();
	}
}

onload = janw.start;

