/* PRICES */
$(document).ready(function() {
$(document).on('click','.prices .price-catagory',function() {
$(this).next('.prices .price-content').toggle();
$(this).find('i').toggleClass('glyphicon-chevron-right glyphicon-chevron-down');
$(this).next('.prices .price-content').empty().append('');
$(this).next('.prices .price-content').load($(this).attr('data-ajax'));
return false;
});
});
/* PRICES */