$(document).ready(function(){
	
	$('.focusOnLoad').focus();
	
	$(".selectTextOnClick").click(function(event){
		this.select();
	});
	
	$(".hovereable").hover(function(event){
		$(this).addClass('hover');
	}, function(event){
		$(this).removeClass('hover');
	});
	
	$(".animateButton").hover(function(event){
		$(this).addClass('hover');
	}, function(event){
		$(this).removeClass('hover');
		$(this).removeClass('click');
	});
	
	$(".animateButton").mousedown(function(event){
		$(this).addClass('click');
	});
	
	$(".animateButton").mouseup(function(event){
		$(this).removeClass('click');
	});
	
	$(".standardBookmarkletLink").click( function(event){
		event.preventDefault();
		alert(messages[0]);
	});
	
}); // end jQuery $(document).ready
