
$(document).ready(function(){

	var hash;
	if(location.hash != ''){
		hash = location.hash;
	}else{
		hash = 'hide';
	}

	if(location.href.match(RegExp('/news/'))){
		$("a.fancyBuy").fancybox({'width':530,'height':300,'type':'iframe'});
		$("#news .accordion").accordion({
			header:'h3',
			active:hash,
			alwaysOpen:false,
			autoHeight:false
		});
		if(location.hash != '') location.href = location.hash;
	}

	if(location.href.match(RegExp('/media/'))){
		$("#media .accordion").accordion({
			header:'h4',
			active:hash,
			alwaysOpen:false,
			autoHeight:false
		});
		if(location.hash != '') location.href = location.hash;
	}

	if(location.href.match(RegExp('/discography/'))){
		$("a.fancybox").fancybox({'width':500,'height':530,'type':'iframe'});
		$("a.fancyBuy").fancybox({'width':530,'height':420,'type':'iframe'});
	}

	n = Math.floor(Math.random() * 3);
	$('body.layer2 div#global').css('background','url(../images/common/global_' + n + '.jpg) center top no-repeat');
	$('body.layer2 div#header').css('background','url(../images/common/global_' + n + '.jpg) center top no-repeat');

	if (typeof document.documentElement.style.maxHeight == "undefined") {
		DD_belatedPNG.fix('#header h1 img, #header p img, .shareSoc img');
	}
});

