// JavaScript Document

$(document).ready(function(){
						   
			$('.qtyButton').bind('click', tableHandler);	
			
			var check = false;
						   
			function tableHandler(){
				
				if(check == false){

						$(this).text('Hide Discounts');
				
						var theTable = $(this).parent().parent().find('table').parent();
				
						$(theTable).hide();
				
						$(theTable).addClass('activeTable');
				
						$(theTable).fadeIn();
					
						check = true;
						
				

					
				}
				else {
					
					$(this).text('Quantity Discounts');
					
					var theTable = $(this).parent().parent().find('table').parent();

					setTimeout("$(theTable).removeClass('activeTable')", 300);
				
					$(theTable).fadeOut(300);
					
					check = false;

					
				}
				
				
					
			}
						   
						   
						   
});
