var h = new Array(0, 0, 0, 0, 0);
					var t = new Array(0, 1, 2, 3, 4);
					var timer_is_on = new Array(0, 0, 0, 0, 0);
					var show = new Array(0, 0, 0, 0, 0);
					var cur_url='news';
					
					function timedCount(id, index)
					{
						t[index] = setTimeout("timedCount(\""+id+"\", \""+index+"\")",33);
						
						if (show[index])
							if (h[index] > -10)
								h[index]--;
							else
							{
								clearTimeout(t[index]);
								timer_is_on[index] = 0;
							}
						else
							if (h[index] < 0)
								h[index]++;
							else
							{
								clearTimeout(t[index]);
								timer_is_on[index] = 0;
							}
						
						document.getElementById(id).style.top = (325 + h[index]) + "px";
					}
					
					function showSocial(id, index)
					{
						show[index] = 1;
						if (!timer_is_on[index])
						{
							timer_is_on[index] = 1;
							timedCount(id, index);
						}
					}
					
					function hideSocial(id, index)
					{
						show[index] = 0;
						if (!timer_is_on[index])
						{
							timer_is_on[index] = 1;
							timedCount(id, index);
						}
					}
					
					function headerLink(url)
					{
						cur_url = url;
						
						if(url == 'forum')
							document.getElementById('side_bg').style.visibility = 'hidden';
						else
							document.getElementById('side_bg').style.visibility = 'visible';
						
						document.getElementById('navbar_news').style.background = 'url(navigation/news_1.jpg)';
						document.getElementById('navbar_kuenstler').style.background = 'url(navigation/kuenstler_1.jpg)';
						document.getElementById('navbar_media').style.background = 'url(navigation/media_1.jpg)';
						document.getElementById('navbar_forum').style.background = 'url(navigation/forum_1.jpg)';
						document.getElementById('navbar_shop').style.background = 'url(navigation/shop_1.jpg)';
						document.getElementById('navbar_studio').style.background = 'url(navigation/studio_1.jpg)';
						document.getElementById('navbar_workshops').style.background = 'url(navigation/workshops_1.jpg)';
						document.getElementById('navbar_presse').style.background = 'url(navigation/presse_1.jpg)';
						
						document.getElementById(('navbar_'+url)).style.background = ('url(navigation/'+url+'_3.jpg)');
					}
					
					function hoverLink(url)
					{
						if(url != cur_url)
							document.getElementById(('navbar_'+url)).style.background = ('url(navigation/'+url+'_2.jpg)');
					}
					
					function normLink(url)
					{
						if(url != cur_url)
							document.getElementById(('navbar_'+url)).style.background = ('url(navigation/'+url+'_1.jpg)');
					}
