// CART SIDEBAR INCLUDE HOPUPS
$(document).ready(function() {
  $('#shippingRatesLink').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

$(document).ready(function() {
  $('#returnPolicyLink').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

$(document).ready(function() {
  $('#internationalShippingLink').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

$(document).ready(function() {
  $('#internationalShipping2Link').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

$(document).ready(function() {
  $('#sendEmailLink').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

// CHECKOUT 3 HOPUPS
$(document).ready(function() {
  $('#promoTipLink').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

$(document).ready(function() {
  $('#debitGiftTipLink').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

$(document).ready(function() {
  $('#aboutSecurityCodeLink').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

// Online Legal Form Hop-up
$(document).ready(function() {
  $('#onlineFormsSafeLink').cluetip({
    showTitle: false, // hide the clueTip's heading
	sticky: true,
	activation: 'click',
	local: true,
	width: 300
  });
});

// JUST ANSWER - MODAL WINDOW
/*
$(document).ready(function() {
  $('#justanswer').bind('submit',function() {
    var fRef = this;
    $.prompt('<h4>Leaving www.nolo.com</h4><p>You are leaving Nolo for a third-party website, <strong>JustAnswer.com</strong>.</p>',{
	  buttons:{ 'Continue':true },
	  prefix:'colsJqi',
	  opacity: 0.9,
	  show:'slideDown',
	  submit:function(v,m) { 
	    if (v) { fRef.submit(); }
	  }
    });
    return false;
  });
});
*/