$(document).ready( function() {

	var helpBox = $(".help-box").size();
	
	if(helpBox > 0) {
		if(navigator.userAgent.indexOf("Firefox")!=-1){
			$(".toolbox").css('margin', '0 0 0 330px');
		}

		$(".help-box").hover( function() {
			showWhat = $(this).get(0).id;

			$("#show-"+showWhat).show();
			$("#"+showWhat).addClass('hover');
		}, function() {
			showWhat = $(this).get(0).id;

			$("#"+showWhat).removeClass('hover');
			$("#show-"+showWhat).hide();
		});
	}
});