new Tip('stephenaboutme-hover', {
				target: $('stephenaboutme-hover').up('div'),
				ajax: {
					url: 'include/stephenaboutme.php',
					options: {
						onComplete: function(transport) {
							// you could do something here after the ajax call is finished
						}
					}
				},
				hideOn: 'mouseout',
				width: '271px', // We don't want the default 250px.
				               // Images inside the tooltip will need to have dimensions set since Prototip needs to fixate width for proper rendering.
				hook: { target: 'rightMiddle', tip: 'leftMiddle', mouse: true },
				offset: { x: 20, y: 0 }
			});
			
			
			
			
new Tip('bangkokbob-hover', {
				target: $('bangkokbob-hover').up('div'),
				ajax: {
					url: 'include/bangkokbob.php',
					options: {
						onComplete: function(transport) {
							// you could do something here after the ajax call is finished
						}
					}
				},
				hideOn: 'mouseout',
				width: '253px', // We don't want the default 250px.
				               // Images inside the tooltip will need to have dimensions set since Prototip needs to fixate width for proper rendering.
				hook: { target: 'leftMiddle', tip: 'rightMiddle', mouse: true },
				offset: { x: -20, y: -150 }
			});
			
			
			
			
new Tip('sloutside-hover', {
				target: $('sloutside-hover').up('div'),
				ajax: {
					url: 'include/sloutside.php',
					options: {
						onComplete: function(transport) {
							// you could do something here after the ajax call is finished
						}
					}
				},
				hideOn: 'mouseout',
				width: '337px', // We don't want the default 250px.
				               // Images inside the tooltip will need to have dimensions set since Prototip needs to fixate width for proper rendering.
				hook: { target: 'leftMiddle', tip: 'rightMiddle', mouse: true },
				offset: { x: -20, y: 100 }
			});
			
			
			
			
new Tip('fairgame-hover', {
				target: $('fairgame-hover').up('div'),
				ajax: {
					url: 'include/fairgame.php',
					options: {
						onComplete: function(transport) {
							// you could do something here after the ajax call is finished
						}
					}
				},
				hideOn: 'mouseout',
				width: '222px', // We don't want the default 250px.
				               // Images inside the tooltip will need to have dimensions set since Prototip needs to fixate width for proper rendering.
				hook: { target: 'leftMiddle', tip: 'rightMiddle', mouse: true },
				offset: { x: -20, y: -120 }
			});
			
			
			
			
new Tip('magazine-hover', {
				target: $('magazine-hover').up('div'),
				ajax: {
					url: 'include/magazine.php',
					options: {
						onComplete: function(transport) {
							// you could do something here after the ajax call is finished
						}
					}
				},
				hideOn: 'mouseout',
				width: '137px', // We don't want the default 250px.
				               // Images inside the tooltip will need to have dimensions set since Prototip needs to fixate width for proper rendering.
				hook: { target: 'leftMiddle', tip: 'rightMiddle', mouse: true },
				offset: { x: -20, y: 100 }
			});
			
			
			
			
new Tip('slface-hover', {
				target: $('slface-hover').up('div'),
				ajax: {
					url: 'include/slface.php',
					options: {
						onComplete: function(transport) {
							// you could do something here after the ajax call is finished
						}
					}
				},
				hideOn: 'mouseout',
				width: '261px', // We don't want the default 250px.
				               // Images inside the tooltip will need to have dimensions set since Prototip needs to fixate width for proper rendering.
				hook: { target: 'leftMiddle', tip: 'rightMiddle', mouse: true },
				offset: { x: -20, y: 100 }
			});
			
			
			
			
new Tip('jack-hover', {
				target: $('jack-hover').up('div'),
				ajax: {
					url: 'include/jack.php',
					options: {
						onComplete: function(transport) {
							// you could do something here after the ajax call is finished
						}
					}
				},
				hideOn: 'mouseout',
				width: '314px', // We don't want the default 250px.
				               // Images inside the tooltip will need to have dimensions set since Prototip needs to fixate width for proper rendering.
				hook: { target: 'leftMiddle', tip: 'rightMiddle', mouse: true },
				offset: { x: -20, y: -100 }
			});
			
			
// Suppress tooltip display for links that have the classname 'suppress'

var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
    if (links[i].className == 'suppress') {
        links[i]._title = links[i].title;
        links[i].onmouseover = function() {
             this.title = '';
        }
        links[i].onmouseout = function() {
             this.title = this._title;
        }
    }}
