// JavaScript Document                                                                                             
// The Braid UG (haftungsbeschraenkt) 
// mediaism      
// Holstenstrasse 22
// 24103 Kiel
// author: Bjoern Diekert / Germany / Kiel
// e-mail: diekert@the-braid.de

$(document).ready(function(){ 
	
	var parts = document.URL.split('#');
	var redirect_url_part = parts[1];
	var url_front = 'http://www.halle400.de';
	var redirect_url = url_front + redirect_url_part;
		
	if(typeof(redirect_url_part) !== 'undefined')
	{
		document.location.href = redirect_url ;	
	}
	
	
	bgresize();

	$('#music-box').load('http://www.halle400.de/files/_resources/music/1.html');

});

$(window).load(function(){
	$("#fullbg").delay(300).fadeIn(1300);
	$("#content-wrapper").delay(600).slideDown(1000);

  	
});

$(window).resize(function(){ 
	bgresize(); 
});

