$(document).ready(function() {

// jTip theme
  $('a.jt').cluetip({
    cluetipClass: 'jtip', arrows: true, 
    dropShadow: false, 
	 mouseOutClose: true,
	width: '470px',
	closePosition: 'title',
    closeText: '<img src="cross.png" alt="&#1079;&#1072;&#1082;&#1088;&#1080;&#1090;&#1080;" />',
    onActivate: function(e) {
      var cb = $('#cb')[0];
      return !cb || cb.checked;
    }
  });

});