// JavaScript Document
function makeBallons() {
	jQuery(function() {
	jQuery('*[rel=tipsy]').tipsy({fade: false, gravity: 's'});
	jQuery('*[rel=tipsye]').tipsy({fade: false, gravity: 'e'});
	});

// mandatory tipsy in site
	jQuery(function() {
	jQuery('*[rel=tipsy_mandatory]').tipsy({fade: false, gravity: 's'});
	});
	jQuery(function() {
	jQuery("#hasTipsy").tipsy({gravity: 's'});
	});
}
window.onload=makeBallons;
