 $(document).ready(function(){

//SHOW/HIDE PRICES
//close all the content divs on page load
$('#info-1,#info-2,#info-3,#info-4').hide();

// toggle box 1
$('#info1').click(function(){
//start the animation
$('#info-1').slideToggle();
return false;
});

// toggle box 2
$('#info2').click(function(){
//start the animation
$('#info-2').slideToggle();
return false;
});

// toggle box 3
$('#info3').click(function(){
//start the animation
$('#info-3').slideToggle();
return false;
});

// toggle box 4
$('#info4').click(function(){
//start the animation
$('#info-4').slideToggle();
return false;
});

});
