
			jQuery(function(){
				jQuery("a#remove").click(
					function(){
						jQuery("#remove-content,#file-content,#soak-content,#push-back-content,#moisturize-content,#polish-content,#wait-content,#dry-content").css({'display': 'none'});
						jQuery("ul#remove-content").css({'display': 'block'});
						jQuery("a#remove").css({'background': '#D12141','color': 'white'});
						jQuery("#file,#soak,#push-back,#moisturize,#polish,#wait,#dry").css({'background': 'white','color': 'black'});
						return false;
				});
			
				jQuery("a#file").click(
					function(){
						jQuery("#remove-content,#file-content,#soak-content,#push-back-content,#moisturize-content,#polish-content,#wait-content,#dry-content").css({'display': 'none'});
						jQuery("ul#file-content").css({'display': 'block'});
						jQuery("a#file").css({'background': '#D12141','color': 'white'});
						jQuery("#remove,#soak,#push-back,#moisturize,#polish,#wait,#dry").css({'background': 'white','color': 'black'});
						return false;
				});
			
				jQuery("a#soak").click(
					function(){
						jQuery("#remove-content,#file-content,#soak-content,#push-back-content,#moisturize-content,#polish-content,#wait-content,#dry-content").css({'display': 'none'});
						jQuery("ul#soak-content").css({'display': 'block'});
						jQuery("a#soak").css({'background': '#D12141','color': 'white'});
						jQuery("#remove,#file,#push-back,#moisturize,#polish,#wait,#dry").css({'background': 'white','color': 'black'});
						return false;
				});
			
				jQuery("a#push-back").click(
					function(){
						jQuery("#remove-content,#file-content,#soak-content,#push-back-content,#moisturize-content,#polish-content,#wait-content,#dry-content").css({'display': 'none'});
						jQuery("ul#push-back-content").css({'display': 'block'});
						jQuery("a#push-back").css({'background': '#D12141','color': 'white'});
						jQuery("#remove,#file,#soak,#moisturize,#polish,#wait,#dry").css({'background': 'white','color': 'black'});
						return false;
				});
			
				jQuery("a#moisturize").click(
					function(){
						jQuery("#remove-content,#file-content,#soak-content,#push-back-content,#moisturize-content,#polish-content,#wait-content,#dry-content").css({'display': 'none'});
						jQuery("ul#moisturize-content").css({'display': 'block'});
						jQuery("a#moisturize").css({'background': '#D12141','color': 'white'});
						jQuery("#remove,#file,#soak,#push-back,#polish,#wait,#dry").css({'background': 'white','color': 'black'});
						return false;
				});	
				
				jQuery("a#polish").click(
					function(){
						jQuery("#remove-content,#file-content,#soak-content,#push-back-content,#moisturize-content,#polish-content,#wait-content,#dry-content").css({'display': 'none'});
						jQuery("ul#polish-content").css({'display': 'block'});
						jQuery("a#polish").css({'background': '#D12141','color': 'white'});
						jQuery("#remove,#file,#soak,#push-back,#moisturize,#wait,#dry").css({'background': 'white','color': 'black'});
						return false;
				});	
				jQuery("a#wait").click(
					function(){
						jQuery("#remove-content,#file-content,#soak-content,#push-back-content,#moisturize-content,#polish-content,#wait-content,#dry-content").css({'display': 'none'});
						jQuery("ul#wait-content").css({'display': 'block'});
						jQuery("a#wait").css({'background': '#D12141','color': 'white'});
						jQuery("#remove,#file,#soak,#push-back,#moisturize,#polish,#dry").css({'background': 'white','color': 'black'});
						return false;
				});	
				
				jQuery("a#dry").click(
					function(){
						jQuery("#remove-content,#file-content,#soak-content,#push-back-content,#moisturize-content,#polish-content,#wait-content,#dry-content").css({'display': 'none'});
						jQuery("ul#dry-content").css({'display': 'block'});
						jQuery("a#dry").css({'background': '#D12141','color': 'white'});
						jQuery("#remove,#file,#soak,#push-back,#moisturize,#polish,#wait").css({'background': 'white','color': 'black'});
						return false;
				});				
				
			});

