// source --> https://jessicanpeterson.com/wp-content/plugins/responsive-menu/v4.0.0/assets/js/rmp-menu.js?ver=4.7.2 
/**
 * This file contain the scrips for menu frontend.
 * @author ExpressTech System
 *
 * @since 4.0.0
 */

jQuery( document ).ready( function( jQuery ) {

	/**
	 * RmpMenu Class
	 * This RMP class is handling the frontend events and action on menu elements.
	 * @since      4.0.0
	 * @access     public
	 *
	 * @class      RmpMenu
	 */
	class RmpMenu {

		/**
		 * This is constructor function which is initialize the elements and options.
		 * @access public
		 * @since 4.0.0
		 * @param {Array} options List of options.
		 */
		constructor( options ) {
			RmpMenu.activeToggleClass        = 'is-active';
			RmpMenu.openContainerClass       = 'rmp-menu-open';
			RmpMenu.activeSubMenuArrowClass  = 'rmp-menu-subarrow-active';
			RmpMenu.subMenuClass             = '.rmp-submenu';
			RmpMenu.activeTopMenuClass  	 = 'rmp-topmenu-active';

			this.options = options;
			this.menuId  = this.options['menu_id'];
			this.trigger = '#rmp_menu_trigger-' + this.menuId;

			this.isOpen  = false;

			this.container    =  '#rmp-container-' + this.menuId;
			this.headerBar    =  '#rmp-header-bar-' + this.menuId;
			this.menuWrap     =  'ul#rmp-menu-'+ this.menuId;
			this.subMenuArrow = '.rmp-menu-subarrow';
			this.wrapper      = '.rmp-container';
			this.linkElement  = '.rmp-menu-item-link';
			this.pageWrapper  = this.options['page_wrapper'];
			this.use_desktop_menu = this.options['use_desktop_menu'];
			this.originalHeight = '',
			this.animationSpeed        =  this.options['animation_speed'] * 1000;
			this.hamburgerBreakpoint   =  this.options['tablet_breakpoint'];
			this.subMenuTransitionTime =  this.options['sub_menu_speed'] * 1000;

			if ( this.options['button_click_trigger'].length > 0 ) {
				this.trigger = this.trigger +' , '+ this.options['button_click_trigger'];
			}

			//Append hamburger icon inside an element
			if ( this.options['button_position_type'] == 'inside-element' ) {
				var destination = jQuery(this.trigger).attr('data-destination');
				jQuery(this.trigger).appendTo(jQuery(destination).parent());
			}

			this.init();
		}

		/**
		 * This function register the events and initiate the menu settings.
		 */
		init() {
			const self = this;

			/**
			 * Register click event of trigger.
			 * @fires click
			 */
			jQuery( this.trigger ).on( 'click', function( e ) {
				e.stopPropagation();
				self.triggerMenu();
			} );

			// Show/Hide sub menu item when click on item toggle.
			jQuery( self.menuWrap ).find( self.subMenuArrow ).on( 'click', function( e ) {
				e.preventDefault();
				e.stopPropagation();
				self.triggerSubArrow( this );
			});

			if ( 'on' == self.options['menu_close_on_body_click'] ) {
				jQuery( document ).on( 'click', 'body', function ( e ) {
					if ( jQuery( window ).width() < self.hamburgerBreakpoint ) {
						if ( self.isOpen ) {
							if ( jQuery( e.target ).closest( self.container ).length || jQuery( e.target ).closest( self.target ).length ) {
								return;
							}
						}
						self.closeMenu();
					}
				});
			}

			/**
			 * Close the menu when click on menu item link before load.
			 */
			if ( self.options['menu_close_on_link_click'] == 'on') {

				jQuery(  this.menuWrap +' '+ self.linkElement ).on( 'click', function(e) {

					if( jQuery(window).width() < self.hamburgerBreakpoint ) {
						e.preventDefault();

						// When close menu on parent clicks is on.
						if ( self.options['menu_item_click_to_trigger_submenu'] == 'on' ) {
							if( jQuery(this).is( '.rmp-menu-item-has-children > ' + self.linkElement ) ) {
								return;
							}
						}

						let _href = jQuery(this).attr('href');
						let _target = ( typeof jQuery(this).attr('target') ) == 'undefined' ? '_self' : jQuery(this).attr('target');

						if( self.isOpen ) {
							if( jQuery(e.target).closest(this.subMenuArrow).length) {
								return;
							}
							if( typeof _href != 'undefined' ) {
								self.closeMenu();
								setTimeout(function() {
									window.open( _href, _target);
								}, self.animationSpeed);
							}
						}
					}
				});
			}

			// Expand Sub items on Parent Item Click.
			if ( 'on' == self.options['menu_item_click_to_trigger_submenu']  ) {
				jQuery( this.menuWrap +' .rmp-menu-item-has-children > ' + self.linkElement ).on( 'click', function(e) {
					if ( jQuery(window).width() < self.hamburgerBreakpoint ) {
						e.preventDefault();
						self.triggerSubArrow(
							jQuery(this).children( '.rmp-menu-subarrow' ).first()
						);
					}
				});
			}

			jQuery(document).on('keydown', function (event) {
				let menuOpen = jQuery('.rmp-container.rmp-menu-open');
				if (menuOpen.length) {
					let activeMenu = menuOpen.find('.rmp-selected-menu-item').length ? menuOpen.find('.rmp-selected-menu-item') : menuOpen.find('.rmp-menu-current-item');
					let parentContainer = jQuery('.rmp-container.rmp-menu-open');
					let menuItems = menuOpen.find('.rmp-menu-item');

					if (event.keyCode === 9) {
						menuItems.removeClass('rmp-selected-menu-item');
						if (activeMenu.length) {
							if (activeMenu.hasClass('rmp-menu-item-has-children')) {
								activeMenu.children('.rmp-menu-item-link').first().find('.rmp-menu-subarrow').click();
								let firstChild = activeMenu.find('.rmp-submenu').children('.rmp-menu-item').first();
								firstChild.addClass('rmp-selected-menu-item').children('.rmp-menu-item-link').first().focus();
							} else {
								let nextMenu = activeMenu.next('.rmp-menu-item');
								if (nextMenu.length) {
									nextMenu.addClass('rmp-selected-menu-item').children('.rmp-menu-item-link').first().focus();
								} else {
									let parentSubmenu = activeMenu.closest('.rmp-submenu');
									if (parentSubmenu.length) {
										let parentMenu = parentSubmenu.closest('.rmp-menu-item');
										let nextSibling = parentMenu.next('.rmp-menu-item');
										parentMenu.children('.rmp-menu-item-link').first().find('.rmp-menu-subarrow').click();
										if (nextSibling.length) {
											nextSibling.addClass('rmp-selected-menu-item').children('.rmp-menu-item-link').first().focus();
										} else {
											let parentSibling = parentMenu.closest('.rmp-submenu').closest('.rmp-menu-item').next('.rmp-menu-item');
											if (parentSibling.length) {
												parentSibling.find('.rmp-menu-item-link').addClass('rmp-selected-menu-item').children('.rmp-menu-item-link').first().focus();
											} else {
												parentContainer.find('.rmp-menu-item').first().addClass('rmp-selected-menu-item').children('.rmp-menu-item-link').first().focus();
											}
										}
									} else {
										parentContainer.find('.rmp-menu-item').first().addClass('rmp-selected-menu-item').children('.rmp-menu-item-link').first().focus();
									}
								}
							}
						} else {
							menuItems.first().addClass('rmp-selected-menu-item').children('.rmp-menu-item-link').first().focus();
						}
						event.preventDefault();
					}

					if (event.keyCode === 13 && activeMenu.length) {
						activeMenu.click();
					}
				}
			});
			// Add rmp-topmenu-active class to current menu item on load
			this.setActiveMenuItemOnLoad();

		}
		// Add rmp-topmenu-active class to current menu item on load
		setActiveMenuItemOnLoad() {
			const currentURL = window.location.href;
			const menuItems = jQuery(this.menuWrap).find('a');

			menuItems.each(function() {
				if (this.href === currentURL) {
					jQuery(this).closest('.rmp-menu-item-has-children').addClass(RmpMenu.activeTopMenuClass);
					return false; // Exit the loop once we've found and marked the current item
				}
			});
		}
		/**
		 * Set push translate for toggle and page wrapper.
		 */
		setWrapperTranslate() {
			let translate,translateContainer;
			switch( this.options['menu_appear_from'] ) {
				case 'left':
					translate = 'translateX(' + this.menuWidth() + 'px)';
					translateContainer = 'translateX(-' + this.menuWidth() + 'px)';
					break;
				case 'right':
					translate = 'translateX(-' + this.menuWidth() + 'px)';
					translateContainer = 'translateX(' + this.menuWidth() + 'px)';
					break;
				case 'top':
					translate = 'translateY(' + this.wrapperHeight() + 'px)';
					translateContainer = 'translateY(-' + this.menuHeight() + 'px)';
					break;
				case 'bottom':
					translate = 'translateY(-' + this.menuHeight() + 'px)';
					translateContainer = 'translateY(' + this.menuHeight() + 'px)';
					break;
			}

			if ( this.options['animation_type'] == 'push' ) {
				jQuery(this.pageWrapper).css( { 'transform':translate } );

				//If push Wrapper has body element then handle menu position.
				if	( 'body' == this.pageWrapper ) {
					jQuery( this.container ).css( { 'transform' : translateContainer } );
				}

			}

			if ( this.options['button_push_with_animation'] == 'on' ) {
				jQuery( this.trigger ).css( { 'transform' : translate } );
			}

		}

		/**
		 * Clear push translate on button and page wrapper.
		 */
		clearWrapperTranslate() {

			if ( this.options['animation_type'] == 'push' ) {
				jQuery(this.pageWrapper).css( { 'transform' : '' } );
			}

			if ( this.options['button_push_with_animation'] == 'on' ) {
				jQuery( this.trigger ).css( { 'transform' : '' } );
			}
		}

		/**
		 * Function to fadeIn the hamburger menu container.
		 */
		fadeMenuIn() {
			jQuery(this.container).fadeIn(this.animationSpeed);
		}

		/**
		 * Function to fadeOut the hamburger menu container.
		 */
		fadeMenuOut() {
			jQuery(this.container)
				.fadeOut(this.animationSpeed, function() {
					jQuery(this).css('display', '');
				});
		}

		/**
		 * Function is use to open the hamburger menu.
		 *
		 * @since 4.0.0
		 */
		openMenu() {
			var self = this;
			jQuery(this.trigger).addClass(RmpMenu.activeToggleClass);
			jQuery(this.container).addClass(RmpMenu.openContainerClass);

			//this.pushMenuTrigger();

			if ( this.options['animation_type'] == 'fade'){
				this.fadeMenuIn();
			} else {
				this.setWrapperTranslate();
			}

			this.isOpen = true;
		}

		/**
		 * Function is use to close the hamburger menu.
		 *
		 * @since 4.0.0
		 */
		closeMenu() {
			jQuery(this.trigger).removeClass(RmpMenu.activeToggleClass);
			jQuery(this.container).removeClass(RmpMenu.openContainerClass);

			if ( this.options['animation_type'] == 'fade') {
				this.fadeMenuOut();
			} else {
				this.clearWrapperTranslate();
			}

			this.isOpen = false;
		}

		/**
		 * Function is responsible for checking the menu is open or close.
		 *
		 * @since 4.0.0
		 * @param {Event} e
		 */
		triggerMenu() {
			this.isOpen ? this.closeMenu() : this.openMenu();
		}

		triggerSubArrow( subArrow ) {
			var self = this;
			var sub_menu = jQuery( subArrow ).parent().siblings( RmpMenu.subMenuClass );

			//Accordion animation.
			if ( self.options['accordion_animation'] == 'on' ) {
				// Get Top Most Parent and the siblings.
				var top_siblings   = sub_menu.parents('.rmp-menu-item-has-children').last().siblings('.rmp-menu-item-has-children');
				var first_siblings = sub_menu.parents('.rmp-menu-item-has-children').first().siblings('.rmp-menu-item-has-children');

				// Close up just the top level parents to key the rest as it was.
				top_siblings.children('.rmp-submenu').slideUp(self.subMenuTransitionTime, 'linear').removeClass('rmp-submenu-open');

				// Set each parent arrow to inactive.
				top_siblings.each(function() {
					jQuery(this).find(self.subMenuArrow).first().html(self.options['inactive_toggle_contents']);
					jQuery(this).find(self.subMenuArrow).first().removeClass(RmpMenu.activeSubMenuArrowClass);
				});

				// Now Repeat for the current item siblings.
				first_siblings.children('.rmp-submenu').slideUp(self.subMenuTransitionTime, 'linear').removeClass('rmp-submenu-open');
				first_siblings.each(function() {
					jQuery(this).find(self.subMenuArrow).first().html(self.options['inactive_toggle_contents']);
					jQuery(this).find(self.subMenuArrow).first().removeClass(RmpMenu.activeSubMenuArrowClass);
				});
			}

			// Active sub menu as default behavior.
			if( sub_menu.hasClass('rmp-submenu-open') ) {
				sub_menu.slideUp(self.subMenuTransitionTime, 'linear',function() {
					jQuery(this).css( 'display', '' );
				} ).removeClass('rmp-submenu-open');
				jQuery( subArrow ).html( self.options['inactive_toggle_contents'] );
				jQuery( subArrow ).removeClass(RmpMenu.activeSubMenuArrowClass);
			} else {
				sub_menu.slideDown(self.subMenuTransitionTime, 'linear').addClass( 'rmp-submenu-open' );
				jQuery( subArrow ).html(self.options['active_toggle_contents'] );
				jQuery( subArrow ).addClass(RmpMenu.activeSubMenuArrowClass);
			}

		}

		/**
		 * Function to add tranform style on trigger.
		 *
		 * @version 4.0.0
		 *
		 * @param {Event} e Event object.
		 */
		pushMenuTrigger( e ) {
			if ( 'on' == this.options['button_push_with_animation'] ) {
				jQuery( this.trigger ).css( { 'transform' : this.menuWidth() } );
			}
		}

		/**
		 * Returns the height of container.
		 *
		 * @version 4.0.0
		 *
		 * @return Number
		 */
		menuHeight() {
			return jQuery( this.container ).height();
		}

		/**
		 * Returns the width of the container.
		 *
		 * @version 4.0.0
		 *
		 * @return Number
		 */
		menuWidth() {
			return jQuery( this.container ).width();
		}

		wrapperHeight() {
			return jQuery( this.wrapper ).height();
		}

		backUpSlide( backButton ) {
			let translateTo = parseInt( jQuery( this.menuWrap )[0].style.transform.replace( /^\D+/g, '' ) ) - 100;
			jQuery( this.menuWrap ).css( { 'transform': 'translateX(-' + translateTo + '%)' } );
			let previousSubmenuHeight = jQuery( backButton ).parent( 'ul' ).parent( 'li' ).parent( '.rmp-submenu' ).height();
			if ( ! previousSubmenuHeight ) {
				jQuery( this.menuWrap ).css( { 'height': this.originalHeight } );
			} else {
				jQuery( this.menuWrap + this.menuId ).css( { 'height': previousSubmenuHeight + 'px' } );
			}
		}
	}

	/**
	 * Create multiple instance of menu and pass the options.
	 *
	 * @version 4.0.0
	 */
	for ( let index = 0; index < rmp_menu.menu.length; index++ ) {
		let rmp = new RmpMenu( rmp_menu.menu[index] );
	}

} );
// source --> https://jessicanpeterson.com/wp-content/plugins/wonderplugin-audio/engine/wonderpluginaudioskins.js?ver=12.3.1PRO 
/** Wonderplugin Audio Player Plugin Pro Version
 * Copyright 2026 Magic Hills Pty Ltd All Rights Reserved
 * Website: http://www.wonderplugin.com
 * Version 12.3 
 */
var WONDERPLUGIN_AUDIO_SKIN_OPTIONS={darkbox:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-48-48-1.png",showinfo:true,imageheight:100,skin:"DarkBox",loopimage:"loop-24-24-0.png",loopimagewidth:24,showstop:false,prevnextimageheight:48,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",
stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:true,volumeimage:"volume-24-24-0.png",playpauseimagewidth:48,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:48,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:48,showbackgroundimage:false,
imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-48-48-1.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:true,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:true,stopimageheight:24,volumeimageheight:24,stopimagewidth:24,volumebarheight:72,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,
showimage:true,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true},bar:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-0.png",showinfo:false,imageheight:100,skin:"Bar",loopimage:"loop-24-24-0.png",loopimagewidth:24,
showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:true,volumeimage:"volume-24-24-0.png",playpauseimagewidth:24,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",
prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:24,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-24-24-0.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,
stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true},barwithplaylist:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",
prevnextimage:"prevnext-24-24-0.png",showinfo:false,imageheight:100,skin:"BarwithPlaylist",loopimage:"loop-24-24-0.png",loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:true,volumeimage:"volume-24-24-0.png",playpauseimagewidth:24,loopimageheight:24,
tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:24,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-24-24-0.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,
titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:true,stopimageheight:24,volumeimageheight:24,stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true},bartitle:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",
volumeimagewidth:24,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-0.png",showinfo:false,imageheight:100,skin:"BarTitle",loopimage:"loop-24-24-0.png",loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,
showvolumebar:true,imagefullwidth:false,width:420,showtitleinbar:true,showloop:true,volumeimage:"volume-24-24-0.png",playpauseimagewidth:24,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:24,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-0.png",
playpauseimage:"playpause-24-24-0.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:48,
timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true},barwhite:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-1.png",showinfo:false,imageheight:100,skin:"BarWhite",loopimage:"loop-24-24-2.png",loopimagewidth:24,showstop:false,prevnextimageheight:24,
infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:true,volumeimage:"volume-24-24-2.png",playpauseimagewidth:24,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",
prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-1.png",playpauseimageheight:24,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-1.png",playpauseimage:"playpause-24-24-1.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,
stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true,tracklistbarbgcolor:"#aaa",tracklistthumbcolor:"#333"},barwhitewithplaylist:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,
random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-1.png",showinfo:false,imageheight:100,skin:"BarWhitewithPlaylist",loopimage:"loop-24-24-2.png",loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,
showloop:true,volumeimage:"volume-24-24-2.png",playpauseimagewidth:24,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-1.png",playpauseimageheight:24,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-1.png",playpauseimage:"playpause-24-24-1.png",showprevnext:true,
backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:true,stopimageheight:24,volumeimageheight:24,stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,
fullwidth:false,loop:1,preloadaudio:true,tracklistbarbgcolor:"#aaa",tracklistthumbcolor:"#333"},barwhitetitle:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-1.png",showinfo:false,imageheight:100,skin:"BarWhiteTitle",loopimage:"loop-24-24-2.png",loopimagewidth:24,showstop:false,
prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:420,showtitleinbar:true,showloop:true,volumeimage:"volume-24-24-2.png",playpauseimagewidth:24,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",
prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-1.png",playpauseimageheight:24,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-1.png",playpauseimage:"playpause-24-24-1.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,
stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true,tracklistbarbgcolor:"#aaa",tracklistthumbcolor:"#333"},jukebox:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:true,random:false,
titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-0.png",showinfo:true,imageheight:100,skin:"Jukebox",loopimage:"loop-24-24-0.png",loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:true,volumeimage:"volume-24-24-0.png",
playpauseimagewidth:24,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:24,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-24-24-0.png",showprevnext:true,backgroundimage:"",autoplay:false,
volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:true,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:true,stopimageheight:24,volumeimageheight:24,stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:true,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true},
whitebox:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:36,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-36-36-0.png",showinfo:true,imageheight:120,skin:"White Box",loopimage:"loop-36-36-0.png",loopimagewidth:36,showstop:false,prevnextimageheight:36,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",
stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:true,volumeimage:"volume-36-36-0.png",playpauseimagewidth:36,loopimageheight:36,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:36,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:36,showbackgroundimage:false,
imagewidth:120,stopimage:"stop-36-36-0.png",playpauseimage:"playpause-36-36-0.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:true,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:true,stopimageheight:36,volumeimageheight:36,stopimagewidth:36,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,
showimage:true,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true,progressinbar:false},whiteboxlive:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:36,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:false,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-36-36-0.png",showinfo:true,imageheight:120,skin:"White Box Live",
loopimage:"loop-36-36-0.png",loopimagewidth:36,showstop:false,prevnextimageheight:36,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:false,volumeimage:"volume-36-36-0.png",playpauseimagewidth:36,loopimageheight:36,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",
prevnextimagewidth:36,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:36,showbackgroundimage:false,imagewidth:120,stopimage:"stop-36-36-0.png",playpauseimage:"playpause-36-36-1.png",showprevnext:false,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:true,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:36,volumeimageheight:36,
stopimagewidth:36,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:true,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true,progressinbar:true,showliveplayedlist:true},greybox:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:36,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",
height:600,loadingformat:"Loading...",prevnextimage:"prevnext-36-36-0.png",showinfo:true,imageheight:120,skin:"Grey Box",loopimage:"loop-36-36-0.png",loopimagewidth:36,showstop:false,prevnextimageheight:36,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:true,volumeimage:"volume-36-36-0.png",
playpauseimagewidth:36,loopimageheight:36,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:36,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:36,showbackgroundimage:false,imagewidth:120,stopimage:"stop-36-36-0.png",playpauseimage:"playpause-36-36-0.png",showprevnext:true,backgroundimage:"",autoplay:false,
volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:true,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:true,stopimageheight:36,volumeimageheight:36,stopimagewidth:36,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:true,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true,
progressinbar:false,tracklistbarbgcolor:"#555"},greyboxlive:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:36,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:false,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-36-36-0.png",showinfo:true,imageheight:120,skin:"Grey Box Live",loopimage:"loop-36-36-0.png",loopimagewidth:36,showstop:false,prevnextimageheight:36,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",
stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:false,volumeimage:"volume-36-36-0.png",playpauseimagewidth:36,loopimageheight:36,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:36,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:36,showbackgroundimage:false,
imagewidth:120,stopimage:"stop-36-36-0.png",playpauseimage:"playpause-36-36-1.png",showprevnext:false,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:true,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:36,volumeimageheight:36,stopimagewidth:36,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,
showimage:true,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true,progressinbar:true,tracklistbarbgcolor:"#555",showliveplayedlist:true},lightbox:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:true,random:false,titleformat:"%TITLE%",height:300,loadingformat:"Loading...",prevnextimage:"prevnext-48-48-1.png",
showinfo:true,imageheight:180,skin:"LightBox",loopimage:"loop-24-24-2.png",loopimagewidth:24,showstop:false,prevnextimageheight:48,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:true,width:300,showtitleinbar:false,showloop:true,volumeimage:"volume-24-24-2.png",playpauseimagewidth:48,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",
prevnextimagewidth:48,tracklistarrowimage:"tracklistarrow-48-16-1.png",playpauseimageheight:48,showbackgroundimage:false,imagewidth:300,stopimage:"stop-48-48-0.png",playpauseimage:"playpause-48-48-1.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:true,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"fixed",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:48,volumeimageheight:24,
stopimagewidth:48,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:true,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true,tracklistbarbgcolor:"#aaa",tracklistthumbcolor:"#333"},musicbox:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:true,titleinbarwidth:80,showprogress:true,random:false,
titleformat:"%TITLE%",height:164,loadingformat:"Loading...",prevnextimage:"prevnext-48-48-0.png",showinfo:true,imageheight:100,skin:"MusicBox",loopimage:"loop-24-24-1.png",loopimagewidth:24,showstop:false,prevnextimageheight:48,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:300,showtitleinbar:false,showloop:false,volumeimage:"volume-24-24-1.png",
playpauseimagewidth:48,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:48,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:48,showbackgroundimage:false,imagewidth:100,stopimage:"stop-48-48-0.png",playpauseimage:"playpause-48-48-0.png",showprevnext:true,backgroundimage:"",autoplay:false,
volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:true,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"fixed",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:48,volumeimageheight:24,stopimagewidth:48,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:true,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:true,fullwidth:false,loop:1,preloadaudio:true},
threebuttons:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:false,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-2.png",showinfo:false,imageheight:100,skin:"Three Buttons",loopimage:"loop-24-24-0.png",loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",
stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:24,showtitleinbar:false,showloop:false,volumeimage:"volume-24-24-0.png",playpauseimagewidth:24,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:24,showbackgroundimage:false,
imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-24-24-2.png",showprevnext:true,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,
showimage:false,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:false,fullwidth:false,loop:1,preloadaudio:true},button24:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:false,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-0.png",showinfo:false,imageheight:100,skin:"Button24",loopimage:"loop-24-24-0.png",
loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:24,showtitleinbar:false,showloop:false,volumeimage:"volume-24-24-0.png",playpauseimagewidth:24,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",
prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:24,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-24-24-2.png",showprevnext:false,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,
stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:false,fullwidth:false,loop:1,preloadaudio:true},button48:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:false,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",
prevnextimage:"prevnext-24-24-0.png",showinfo:false,imageheight:100,skin:"Button48",loopimage:"loop-24-24-0.png",loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:48,showtitleinbar:false,showloop:false,volumeimage:"volume-24-24-0.png",playpauseimagewidth:48,loopimageheight:24,
tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:48,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-48-48-1.png",showprevnext:false,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,
titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:48,timeformat:"%CURRENT% / %DURATION%",showvolume:false,fullwidth:false,loop:1,preloadaudio:true},buttonblue:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",
volumeimagewidth:24,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:false,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-0.png",showinfo:false,imageheight:100,skin:"ButtonBlue",loopimage:"loop-24-24-0.png",loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,
showloading:false,showvolumebar:true,imagefullwidth:false,width:48,showtitleinbar:false,showloop:false,volumeimage:"volume-24-24-0.png",playpauseimagewidth:48,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:48,showbackgroundimage:false,
imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-48-48-2.png",showprevnext:false,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,
showimage:false,tracklistarrowimagewidth:16,timeformat:"%CURRENT% / %DURATION%",showvolume:false,fullwidth:false,loop:1,preloadaudio:true},blueplaystop:{skinsfoldername:"",titleinbarwidthmode:"fixed",timeformatlive:"%CURRENT% / LIVE",volumeimagewidth:24,barbackgroundimage:"",showtime:false,titleinbarwidth:80,showprogress:false,random:false,titleformat:"%TITLE%",height:600,loadingformat:"Loading...",prevnextimage:"prevnext-24-24-0.png",showinfo:false,imageheight:100,skin:"BluePlayStop",loopimage:"loop-24-24-0.png",
loopimagewidth:24,showstop:false,prevnextimageheight:24,infoformat:"<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>",stopotherplayers:true,showloading:false,showvolumebar:true,imagefullwidth:false,width:48,showtitleinbar:false,showloop:false,volumeimage:"volume-24-24-0.png",playpauseimagewidth:48,loopimageheight:24,tracklistitem:10,tracklistitemformat:"<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>",
prevnextimagewidth:24,tracklistarrowimage:"tracklistarrow-48-16-0.png",playpauseimageheight:48,showbackgroundimage:false,imagewidth:100,stopimage:"stop-24-24-0.png",playpauseimage:"playpause-48-48-3.png",showprevnext:false,backgroundimage:"",autoplay:false,volumebarpadding:8,progressheight:8,showtracklistbackgroundimage:false,titleinbarscroll:true,showtitle:false,defaultvolume:-1,tracklistarrowimageheight:16,heightmode:"auto",titleinbarformat:"%TITLE%",showtracklist:false,stopimageheight:24,volumeimageheight:24,
stopimagewidth:24,volumebarheight:80,noncontinous:false,tracklistbackgroundimage:"",showbarbackgroundimage:false,showimage:false,tracklistarrowimagewidth:16,timeformat:"%CURRENT% / %DURATION%",showvolume:false,fullwidth:false,loop:1,preloadaudio:true,stoponpausebutton:true}};var WONDERAUDIO_NEWOPTIONS=["darkbox","jukebox","barwithplaylist","barwhitewithplaylist","whitebox","greybox"];
for(var i=0;i<WONDERAUDIO_NEWOPTIONS.length;i++){var skin=WONDERAUDIO_NEWOPTIONS[i];WONDERPLUGIN_AUDIO_SKIN_OPTIONS[skin+"withdownload"]={};for(var key in WONDERPLUGIN_AUDIO_SKIN_OPTIONS[skin])WONDERPLUGIN_AUDIO_SKIN_OPTIONS[skin+"withdownload"][key]=WONDERPLUGIN_AUDIO_SKIN_OPTIONS[skin][key];WONDERPLUGIN_AUDIO_SKIN_OPTIONS[skin+"withdownload"]["infoformat"]="<div class='amazingaudioplayer-info-share'>%DOWNLOADBUTTON% %SHAREBUTTON%</div>\n<div class='amazingaudioplayer-info-title'>%ARTIST% %ALBUM%</div>\n<div class='amazingaudioplayer-info-description'>%INFO%</div>";
WONDERPLUGIN_AUDIO_SKIN_OPTIONS[skin+"withdownload"]["tracklistitemformat"]="<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DOWNLOADBUTTON% %SHAREBUTTON%</div><div class='amazingaudioplayer-item-title'>%TITLE%</div>"}WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"]={};for(var key in WONDERPLUGIN_AUDIO_SKIN_OPTIONS["threebuttons"])WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"][key]=WONDERPLUGIN_AUDIO_SKIN_OPTIONS["threebuttons"][key];
WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"]["buttonusefont"]=true;WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"]["width"]=108;WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"]["showtitleinbar"]=true;WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"]["titleinbarwidth"]=108;WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"]["titleinbarscroll"]=false;WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"]["titleinbarwhitespace"]="normal";
WONDERPLUGIN_AUDIO_SKIN_OPTIONS["custombutton"]={};for(var key in WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"])WONDERPLUGIN_AUDIO_SKIN_OPTIONS["custombutton"][key]=WONDERPLUGIN_AUDIO_SKIN_OPTIONS["customthreebuttons"][key];WONDERPLUGIN_AUDIO_SKIN_OPTIONS["custombutton"]["width"]=32;WONDERPLUGIN_AUDIO_SKIN_OPTIONS["custombutton"]["showtitleinbar"]=false;WONDERPLUGIN_AUDIO_SKIN_OPTIONS["custombutton"]["titleinbarwidth"]=32;WONDERPLUGIN_AUDIO_SKIN_OPTIONS["custombutton"]["showprevnext"]=false;