$(document).ready(function() {
	if($('#photoVideoBox')) $("#reviewsInterviewsBox").tabs();
	if($('#onTheScene')) $("#onTheScene").tabs();
	
	if($('#musicPlayerBox')) {
		var options = {};
		options.playlistXmlPath = "playlist.xml";
		
		var params = {};
		params.allowScriptAccess = "always";
		params.wMode = 'transparent';
			
		swfobject.embedSWF("/assets/flash/OriginalMusicPlayerPlaylist.swf", "musicPlayer", "230", "250", "9.0.0",false, options, params, {});
	}
	
	// Init event posters
	$('.events .eventPost').each(function() {
		$(this).mouseenter(function(e) {
			$(this).children('.flyer').fadeIn(200);
		}).mouseleave(function() {
			$(this).children('.flyer').fadeOut(200);
		});
	});
	
	$('div.oneThird img').lazyload({
		placeholder: "/assets/js/grey.gif",
		effect: "fadeIn"
	});
	
});
