$(document).ready(function() {
  $('.titletips').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
		width: '200',
		dropShadow: false,
		waitImage: false,
		fx: {
		  open: 'fadeIn'
		}
	  
	}); 
  
  $('.tips').cluetip({
	  local:     true,
    //positionBy: 'fixed',
		//hideLocal: true,
		leftOffset: '-90',
		topOffset: '30',
    showTitle: false,
		//sticky: true,
		dropShadow: false,
		waitImage: false,
		fx: {
		  open: 'fadeIn'
		}
  });

$('.pager').hover(function(){ 
        orig = $('#splash-img').attr('src'); 
        $('#splash-img').attr('src',$(this).attr('rel')) 
},function(){ 

        $('#splash-img').attr('src',orig) 
}); 

});
