this.headshotPreview = function(){	
	xOffset = 130;
	yOffset = 20;
	
	jQuery("a.headshot").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br />" + this.t : "";
		jQuery("body").append("<p id='headshot'><img src='http://assets.dschungel-camp.com/img/headshots/"+ this.name +".jpg' width='200' height='200' alt='"+ this.title +"' /></p>"); //"+ c +"								 
		jQuery("#headshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		jQuery("#headshot").remove();
    });	
	jQuery("a.headshot").mousemove(function(e){
		jQuery("#headshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

jQuery(document).ready(function(){
	headshotPreview();
});
