		$(document).ready(function() {
		 // hides the slickbox as soon as the DOM is ready
		 // (a little sooner than page load)
		  $('.slickbox').hide();

		  // toggles the slickbox on clicking the noted link 
		$('a.slickbox-toggle').click(function() {
		    $(this).toggleClass('.slickbox').next().slideToggle(400);
		    $(this).text($(this).text() == '+ READ MORE TESTIMONIALS' ? '- HIDE TESTIMONIALS' : '+ READ MORE TESTIMONIALS'); // <- HERE
		    return false;
		});
		  // toggles the slickbox on clicking the noted link 
		$('a.slickbox-toggle-features').click(function() {
		    $(this).toggleClass('.slickbox').next().slideToggle(400);
		    $(this).text($(this).text() == '+ SEE FEATURES' ? '- HIDE FEATURES' : '+ SEE FEATURES'); // <- HERE
		    return false;
		});
		
		  // toggles the slickbox on clicking the noted link 
		$('a.slickbox-toggle-terms').click(function() {
		    $(this).toggleClass('.slickbox').next().slideToggle(400);
		    $(this).text($(this).text() == '+ SEE TERMS & CONDITIONS' ? '- HIDE TERMS & CONDITIONS' : '+ SEE TERMS & CONDITIONS'); // <- HERE
		    return false;
		});
		
		  // toggles the slickbox on clicking the noted link 
		$('a.slickbox-toggle-specs').click(function() {
		    $(this).toggleClass('.slickbox').next().slideToggle(400);
		    $(this).text($(this).text() == '+ SEE SPECIFICATIONS' ? '- HIDE SPECIFICATIONS' : '+ SEE SPECIFICATIONS'); // <- HERE
		    return false;
		});
		
				});
				
