jQuery(document).ready(function(){
	/*jQuery('#boxbg').css({
		position:'fixed', 
		left:0, 
		top:0, 
		display:'none', 
		textAlign:'center', 
		background:'#000', 
		zIndex:'600'
	});*/

	if (document.all && !window.opera && !window.XMLHttpRequest) 
		jQuery('#boxbg').css({
			position:'absolute'
		});

	/*jQuery('#box').css({
		position:'absolute',
		width: '817px',
		height: '517px',
		left: '50%',
		top: '50%',
		marginLeft:'-408px', 
		marginTop:'-258px', 
		display:'none', 
		zIndex:'600', 	
		background: 'url(/system/css/images/boxbg.png) no-repeat'
	});*/
	if (document.all && !window.opera && !window.XMLHttpRequest)
		{jQuery('#box').css({position:'absolute'});}

});
function OpenBox(titel, source){
	jQuery("#standard").find(".band").stop();
	jQuery("#player").css("visibility","hidden");
	jQuery('#boxbg').css({
		opacity:0.85
	});
	if (document.all && !window.opera && !window.XMLHttpRequest) 
		jQuery('#boxbg').css({height:'10000px'});
		
	/*jQuery('#box').css({
		width: '900px', 
		height: '550px',
		top:scrOfY + 25 + 'px', 
		left:scrOfX + 'px'
	
	});*/

	jQuery('#boxtitel').html('<img src="system/imageText.php?text='+titel+'">');
	new Ajax.Updater('boxcontent', source);

	jQuery('#boxbg').css({display:'block'});
	jQuery('#box').fadeIn('slow');
}

function closeBox() {
	jQuery('#boxbg').hide();
	jQuery('#box').fadeOut('fast');
	jQuery("#player").css("visibility","visible");

}

