 $(document).ready(function(){

//SHOW/HIDE PRICES
//close all the content divs on page load
$('.details').hide();

//Set texts for show/hide links
var showText="Show details";
var showClass ="plus";
var hideText="Hide details";
var hideClass ="minus";

// toggle box 1
$('#toggle').click(function(){

//change the text on the link
// change the link text
if ($('a#toggle').text()==showText) {
$('a#toggle').text(hideText);
$('a#toggle').removeClass('plus').addClass('minus');
}
else {
$('a#toggle').text(showText);
$('a#toggle').removeClass('minus').addClass('plus');
}

//start the animation
$('.details').slideToggle();
return false;
});

});
