	$(document).ready(function(){
		$('#top').hover(
			function() { $('#dor', this).css('display', 'block'); $('#top .division').addClass('selected'); $('#top a').css('background', '#272626'); },
			function() { $('#dor', this).css('display', 'none'); $('#top a').css('background', 'none'); });
		
			$(".image-content").animate({opacity: 0}, 0);
			setTimeout(function(){ $(".image-content").animate({opacity: 1}, 6000)  }, 1000);
	});

	var plItems;
	
	$(function() {
		$('.playerItem').each(function(idx, elem) {
			var item = $(elem);
			var mp3path = item.attr("alt");
			var pid = "gapl" + idx;
			item.prepend('<div id="' + pid + '"></div>');
			var so = new SWFObject("audio/ctrlButton_new.swf", "F"+pid, "40", "30", "9");
			so.addVariable("pid", "F"+pid);
			so.addVariable("mp3_path", mp3path);
			so.addVariable("wmode", "transparent");
			so.addVariable("bgcolor", "#000000");
			so.addVariable("scale", "showall");
			so.addVariable("salign", "");
			so.write(pid);
		});
		if ($.browser.msie)
			plItems = $('.playerItem OBJECT');
		else
			plItems = $('.playerItem embed');
	});
