$(document).ready( function() {
	
	creditToolbarObjects.init({
		goButtonUrl:"/SendInvites"
	});
	
	// This will only apply to the MyInvites page
	var exclamations = $('div.cell_exclamation img');
	
	if( exclamations.length > 0 ) {
		
		var content = exclamations.attr('title');
		exclamations.attr('title', null);
		
		exclamations.qtip({
			content: content,
			show: 'mouseover',
			hide: 'mouseout',
			position: {
		      corner: {
		         target: 'topLeft',
		         tooltip: 'bottomRight'
		      },
		      adjust: {
		    	  x:10
		      }
		   },
		   style: { 
		      name: 'cream', // Inherit from preset style
		      tip: 'bottomRight'
		   }
		});
		
	}

});




