/*******************************************/
/* Behaviour for Digital Dream Portal Site */
/*******************************************/


/****************************************/
/* Do nothing before document is ready! */
/****************************************/
$(document).ready(function() {

var info = {
	digitaldream: 'Manufacturer of fine digital content since 1996',
	dur: 'Doreen &amp; Rainer',
	kk: 'Kaffeeklatsch bei Doreen &amp; Rainer',
	dk: 'Doreen Kaufmann',
	rk: 'Rainer Kaufmann',
	tk: 'Tobias Kaufmann',
	jj: 'Jörg Jordans',
	noppingen: 'Noppingen - eine LEGO&reg; Stadt',
	mbfr: 'LEGO&reg; Modellbaufans Rheinland e.V.',
	webmail: '1&amp;1 Webmailer',
	xhtml: 'Validate XHTML through W3C',
	css: 'Validate CSS through W3C',
	dumbledore: 'Server up and running.',
	defaultmsg: 'DreamNet Portal'
};

$('a[id]').hover(
	function() {
		var id = $(this).attr('id');
		if(!info[id]) {
			id = 'defaultmsg';
		}
		$('#info').html(info[id]);
	},
	function() {
		$('#info').html(info.defaultmsg);
	}
);

$('#info').html(info.defaultmsg);


/************************************/
/* End of condition: document ready */
/************************************/
});
