
$().ready(function() {
	
	$('span.href').click(function() {
		
		$(location).attr('href', $(this).attr('title'));
	});
	
	$("img.help").tipTip({
		maxWidth: "200px", 
		edgeOffset: 5, 
		defaultPosition: "right"
	});
	
});
