﻿
jQuery(initialisePanels);jQuery(connectPanelSwitcher);function initialisePanels(){jQuery('div.tips_box').hide();jQuery('a.button[href="#cut_calories"]').addClass('selected');jQuery('div#cut_calories').show();}
function connectPanelSwitcher(){jQuery('a.button[href="#cut_calories"]').click(function(event){switchToPanel('div#cut_calories',this)
event.preventDefault();applyGeneralHeadings();});jQuery('a.button[href="#cut_salt"]').click(function(event){switchToPanel('div#cut_salt',this)
event.preventDefault();applyGeneralHeadings();});jQuery('a.button[href="#boost_fibre"]').click(function(event){switchToPanel('div#boost_fibre',this)
event.preventDefault();applyGeneralHeadings();});jQuery('a.button[href="#good_ingredients"]').click(function(event){switchToPanel('div#good_ingredients',this)
event.preventDefault();applyGeneralHeadings();});}
function switchToPanel(panelId,anchor){jQuery('a.button').removeClass('selected');jQuery(anchor).addClass('selected');jQuery('div.tips_box').hide();jQuery(panelId).show();}