/*
Activate "clueTip" tooltips for links of specified CSS classes.
*/
$(document).ready(function() {
 $('a.city').cluetip({
    arrows: true
  , cluetipClass: 'city'
  , showTitle: false
  , splitTitle: ' | '
 });
 $('a.cathedral').cluetip({
    arrows: true
  , cluetipClass: 'cathedral'
  , showTitle: false
  , splitTitle: ' | '
 });
 $('a.masterworks').cluetip({
    arrows: true
  , cluetipClass: 'masterworks'
  , showTitle: false
  , splitTitle: ' | '
 });
 $('a.proms').cluetip({
    arrows: true
  , cluetipClass: 'proms'
  , showTitle: false
  , splitTitle: ' | '
 });
  
 $('a.uncategorised').cluetip({
    arrows: true
  , cluetipClass: 'uncategorised'
  , showTitle: false
  , splitTitle: ' | '
 });
});