// for showing what regions powershop supplies


$j(document).ready(function() {
  $j('a.tips').cluetip({showTitle: false, width: '200px', dropShadow: true, dropShadowSteps: 3});
  
  $j('#houdini').cluetip({
    splitTitle: '|', // use the invoking element's title attribute to populate the clueTip...
                     // ...and split the contents into separate divs where there is a "|"
    showTitle: false // hide the clueTip's heading
  });
});

