$(function(){
  $('.rounded').corner({
                         tl: {radius: 5},
                         tr: {radius: 5},
                         bl: {radius: 5},
			 br: {radius: 5},
			 antiAlias: true,
			 autoPad: false
                       });

  $('.tips').cluetip({
                       showTitle: false,
                       sticky: true,
                       arrows: false,
                       activation: 'click',
                       closePosition: 'top',
                       closeText: 'X',
                       cluetipClass: 'dopple',
                       cursor: '',
                       dropShadow: false
                     });
  $('.roll').hoverIntent(function()
                         {
                           this.src = this.src.replace('_normal', '_rollover');
                         },

                         function()
                         {
                           this.src = this.src.replace('_rollover', '_normal');
                         }
                        );

  $(document).pngFix();
})

