$(document).ready(function() {

  $('a.basic').cluetip( { cursor: 'help', width:'500px'});

  $('a.hint-local').cluetip({local:true, width:'200px', cursor: 'pointer', showTitle:false});
  $('a.package-local').cluetip({local:true, width:'420px', cursor: 'pointer', showTitle:false});
  $('a.uniform-local').cluetip({local:true, width:'264px', cursor: 'pointer', showTitle:false});
  $('a.separates-local').cluetip({local:true, width:'420px', cursor: 'pointer', showTitle:false});
  $('a.colors-local').cluetip({local:true, width:'720px', cursor: 'pointer', showTitle:false});

  $('a.jersey-colors').cluetip({local:true, width:'587px', cursor: 'pointer', showTitle:false});
  $('a.shorts-colors').cluetip({local:true, width:'338px', cursor: 'pointer', showTitle:false});
  $('a.socks-colors').cluetip({local:true, width:'340px', cursor: 'pointer', showTitle:false});
  $('a.bag-colors').cluetip({local:true, width:'338px', cursor: 'pointer', showTitle:false});

  if ( $('#print_logo').is( ':checked' ) )
    $('#logo_location_area').show();
  else
    $('#logo_location_area').hide();

  if ( $('#printing1').is( ':checked' ) )
    $('#printing1_location_area').show();
  else
    $('#printing1_location_area').hide();

  if ( $('#printing2').is( ':checked' ) )
    $('#printing2_location_area').show();
  else
    $('#printing2_location_area').hide();

  if ( $('#printing3').is( ':checked' ) )
    $('#printing3_location_area').show();
  else
    $('#printing3_location_area').hide();


  // Iniitally hide all but the selected package options
  $('div.package-options').hide();
  $('div.init-selection').show();

  // On click, hide all the package options and show the selected one
  $('input[@id^=package-]').bind( 'click', function(event){
  	  $('div.package-options').slideUp('fast');
  	  var poid = '#' + $(this).attr('id') + '-options';
  	  $('#quoteform').find( poid ).slideDown('fast');
  });

  $('#print_logo').bind( 'click', function(event) {
  	if ( $('#print_logo').is( ':checked' ) )
  	  $('#logo_location_area').slideDown('fast');
  	else
  	  $('#logo_location_area').slideUp('fast');
  });

  $('#printing1').bind( 'click', function(event) {
  	if ( $('#printing1').is( ':checked' ) )
  	  $('#printing1_location_area').slideDown('fast');
  	else
  	  $('#printing1_location_area').slideUp('fast');
  });

  $('#printing2').bind( 'click', function(event) {
  	if ( $('#printing2').is( ':checked' ) )
  	  $('#printing2_location_area').slideDown('fast');
  	else
  	  $('#printing2_location_area').slideUp('fast');
  });

  $('#printing3').bind( 'click', function(event) {
  	if ( $('#printing3').is( ':checked' ) )
  	  $('#printing3_location_area').slideDown('fast');
  	else
  	  $('#printing3_location_area').slideUp('fast');
  });

});
