/* =========================================================

// jquery.helpqtip.js

// Datum: 2010-12-08
// Firma: Redream Interactive
// Author: Gerard Wunsch
// Mail: gerard@redream.nl
// Web: http://www.redream.nl

  ========================================================= */

(function( $ ){
	$.fn.helpqtip = function() {

		this.each(function() {
			var tip_options = {};
			tip_options.position = { corner: {}};
			tip_options.style = { width: 500 };
			tip_options.style.border = {};
			tip_options.style.border.width = 1;
			tip_options.style.border.radius = 4;
			tip_options.style.border.color = '#5B87C6';
			tip_options.content = { url: '/help/tip/'+$(this).attr('rel') };
			if($(this).hasClass('left_helptip')) {
				tip_options.position.corner.tooltip = 'bottomLeft';
				tip_options.position.corner.target = 'topMiddle';
			}
			if($(this).hasClass('right_helptip')) {
				tip_options.position.corner.target = 'topLeft';
				tip_options.position.corner.tooltip = 'bottomMiddle';
			}

			$(this).qtip(tip_options);
		});
	};
})( jQuery );

