	jQuery(document).ready(function(){
		jQuery('.officer_img_div').hover(function(){
			var officername = jQuery(this).attr('title');
			var num = jQuery(this).attr('name');
			jQuery('.' + num).css('opacity', 1);
			jQuery('.' + num).text(officername);
			jQuery(this).css('border','1px solid #d1e751');
			//alert(officername);
			return false;
		});
		jQuery('.officer_img_div').click(function(){
			var href = jQuery('a', this).attr('href');
			//alert(href);
			window.location.replace(href);
		});
		jQuery('.officer_img_div').mouseout(function(){
			var num = jQuery(this).attr('name');
			jQuery('.' + num).css('opacity', 0);
			jQuery(this).css('border','1px solid #7f7f7f');
			//alert(officername);
			return false;
		});
	});
