//Toggle effect for discounts.html page
$(document).ready(function(){
	
	$("#toggle_wrapper table tbody").hide();
	$("#toggle_wrapper table caption").click(function(){
		$(this).toggleClass("active").next().slideToggle("fast");
	});
}); 
