// JavaScript Document
			var current_extras_btn = null;
			var current_extras_timeout = null;
			
			jQuery(document).ready(
				function(){
					jQuery('.extras-btn').hover(
						function(evt) {
							clearTimeout(window.current_extras_timeout);
							
							var prnt = jQuery(this).parent();
							var slctd = this;
							var divs =jQuery('.extras-popup', prnt);
							
							jQuery('.extras-btn', prnt).each(
								function (i) {
									var div = divs.eq(i);
									
									if(this == slctd){
										div.css('background-position', (14 + (i * 133)) + 'px 0px');
										div.fadeIn('fast');
									}
									else{
										div.hide();
									}
								}
							);
						},
						function(evt) {
							window.current_extras_btn = this;
							
							window.current_extras_timeout = setTimeout(hideCurrentExtrasPopup, 2000);
						}
					);
					
					jQuery('.extras-popup').hover(
						function(evt) {
							clearTimeout(window.current_extras_timeout);
						},
						function(evt) {
							window.current_extras_timeout = setTimeout(hideCurrentExtrasPopup, 2000);
						}
					);
				}
			);
			
			function hideCurrentExtrasPopup(){
				var prnt = jQuery(window.current_extras_btn).parent();
				var slctd = window.current_extras_btn;
				var divs = jQuery('.extras-popup', prnt);
				
				jQuery('.extras-btn', prnt).each(
					function (i) {
						if(this == slctd){
							divs.eq(i).fadeOut('fast');
						}
						else{
							divs.eq(i).hide();
						}
					}
				);
			}
	