		$(document).ready(function(){
			prepareButtons();
		});
		
		function prepareButtons(){
			$("#helperText").hide();
			$(".buttonRow .button").each(function(){
				$(this).mouseover(function(){
					if("#helperText :visible"){
						$("#helperText").text("").hide();
					}
					
					$(this).addClass("hover");

					$("#helperText").text(this.alt).fadeIn("slow");
				});
				
				$(this).blur(function(){
					$("#helperText").fadeOut("fast");
					$(this).removeClass("hover");
				});
				
				$(this).mouseout(function(){
					$("#helperText").fadeOut("fast");
					$(this).removeClass("hover");	
				});
			});
		
			$("#btnPrint").click(function(){
				window.print();
			});
			
			$("#btnBookmark").click(function(){
				bookmark('Ellingham Employment Services', window.location)
			});
			
			$("#btnFontUp").click(function(){
				fontsizeup();
			});
			
			$("#btnFontDown").click(function(){
				fontsizedown();
			});
		}
