$(document).ready(function(){
	
	$('a.new_window').attr('target', '_blank');
	
	$("table tr:even").addClass("alt");
	
	// Client menu
	
	$("div#client_menu").hover(function(){
		$(this).css("overflow", "visible");
	}, function(){
		$(this).css("overflow", "hidden");
	});
	
	// Staff
	
	$("div.staff").hover(function(){
		$(this).addClass("hovered");
	},function(){
		$(this).removeClass("hovered");
	});
	
	// New Window
	
	$("a.new_window").attr("target", "_blank");
	
});
