function templateTooltip(data,title) {
	if (typeof(data != 'undefined')) {
            new Tip(data, BGCOLOR, '#fad2b4', BORDERCOLOR, '#8f2e29', BORDERWIDTH, 1, WIDTH, -300,FADEIN,300,FADEOUT,300,OPACITY,85,OFFSETX,-80,TITLE,title);
    }
}

function activateFlashHeader() {
	// activate flash header if set
	if (headerFlashPath != '') {
		var flashvars = { };
		var params = { };
		var attributes = {
		  id: "headflash"
		};
		
		var playerVersion = '8';
		var width = 538;
		var height = 136;
		
		if (swfobject.hasFlashPlayerVersion(playerVersion)) { // do not try to embed if impossible
			swfobject.embedSWF(headerFlashPath, "headimg", width, height, playerVersion,"/additions/swfobject/expressInstall.swf", flashvars, params, attributes);
		}
	}
}

$(document).ready(function() {
		// blur all links
		$('a').click(function(){ this.blur(); });
		
		activateFlashHeader();
});
