Event.observe(window, 'load', function() {
		 
		 HelpBalloon.Options.prototype = Object.extend(HelpBalloon.Options.prototype, {
			icon: '/presentation/images/ui/content/icon.gif',
			button: '/presentation/images/ui/content/button.png',
			balloonPrefix: '/presentation/images/ui/content/balloon-'
		 });
			
		 //if statement to check that we are on the tools section, otherwise the tooltips arent required	
		 if ($('tool_finance')) {
		 
			 new HelpBalloon({ title: 'Planning', content: "<div style='text-align:left;'><a href='/tools/view/32'>How to work out what to charge!</a><br/><a href='/tools/view/46'>Business Planning before you get started!</a><br/><a href='/tools/view/47'>Important things you need to know...</a><br/><a href='/tools/view/48'>Becoming Self-Employed</a><br/><a href='/tools/view/50'>Fundraising for the Arts</a><br/><a href='/tools/view/51'>Working Creatively with Groups</a><br/><a href='/tools/view/52'>The Creative Business - Part 1 of 12</a><br/><a href='/tools/view/53'>The Creative Business - Part 2 of 12</a><br/></div>", icon: $('tool_finance')});
			 
			 new HelpBalloon({ title: 'Managing', content: "<div style='text-align:left;'><a href='/tools/view/29'>Managing your time</a><br/><a href='/tools/view/30'>Employing people :: What and who do you need?</a><br/><a href='/tools/view/34'>Contracts, Agreements and Payment Terms</a><br/><a href='/tools/view/36'>Sale or Return - Curse of the Designer Maker!</a><br/><a href='/tools/view/37'>Keeping Accounts – The Basics!!</a><br/><a href='/tools/view/38'>Keeping Accounts – The Detailed Version!!</a><br/><a href='/tools/view/45'>Managing Health, Safety and you Environment</a><br/></div>", icon: $('tool_planning')});	
	
			 new HelpBalloon({ title: 'Organising', content: "<div style='text-align:left;'><a href='/tools/view/33'>Tips for Networking & Presenting Yourself</a><br/><a href='/tools/view/40'>Doing Business Online 1 - The Benefits</a><br/><a href='/tools/view/41'>Doing Business Online 2 - Get Connected</a><br/><a href='/tools/view/42'>Doing Business Online 3 - Be Seen Online</a><br/><a href='/tools/view/43'>Protecting your ideas and your work</a><br/><a href='/tools/view/44'>ICT and your business - An overview</a><br/></div>", icon: $('tool_skills'),fixedPosition: HelpBalloon.POS_BOTTOM_RIGHT});		 		
		 
		 }
		
		if ($('tool_youtube')) {
			new HelpBalloon({ title: 'YouTube Embed?', content: 'All video is handled via YouTube. To add a video simply go to <a href="http://www.youtube.com/signup">YouTube</a>, login or signup and then add your video. Once your video has been added copy the Embed field from the side of the movie and paste it here.', icon: $('tool_youtube'),fixedPosition: HelpBalloon.POS_BOTTOM_LEFT});
		}	
		
		if ($('tool_happening')) {
			new HelpBalloon({ title: 'Happenings?', content: 'Post information here about events and things that are going on that may be of interest to other members.', icon: $('tool_happening'),fixedPosition: HelpBalloon.POS_BOTTOM_LEFT});
		}
		
		if ($('tool_lead')) {
			new HelpBalloon({ title: 'Leads?', content: 'Post leads to external Blogs or websites here that may be of interest to other users.', icon: $('tool_lead'),fixedPosition: HelpBalloon.POS_BOTTOM_LEFT});
		}	

});