jQuery.noConflict();

jQuery(document).ready(function(){
  jQuery('.showoptions').click(function(){
    jQuery('.showoptions ul').hide();
    jQuery(this).children("ul").toggle('slow');
  });
  
  jQuery('#basis').click(function(){
    // change panel
    jQuery('#optionsbasis').show('fast');
    jQuery('#optionscomfort').hide('fast');
    jQuery('#optionsluxe').hide('fast');
    // change tab
    jQuery('#basis').addClass('selected');
    jQuery('#comfort').removeClass();
    jQuery('#luxe').removeClass();
  });
  
  jQuery('#comfort').click(function(){
    // change panel
    jQuery('#optionsbasis').hide('fast');
    jQuery('#optionscomfort').show('fast');
    jQuery('#optionsluxe').hide('fast');
    // change tab
    jQuery('#basis').removeClass();
    jQuery('#comfort').addClass('selected');
    jQuery('#luxe').removeClass();
  });
  
  jQuery('#luxe').click(function(){
    // change panel
    jQuery('#optionsbasis').hide('fast');
    jQuery('#optionscomfort').hide('fast');
    jQuery('#optionsluxe').show('fast');
    // change tab
    jQuery('#basis').removeClass();
    jQuery('#comfort').removeClass();
    jQuery('#luxe').addClass('selected');
  });
  
});



