$(document).ready(function(){
						   
	 toothPositions = ["anterior","premolar_upper_left","premolar_upper_right","mananterior","manmolar_left","manmolar_right","manpremolar_left","manpremolar_right","maxmolar_left","maxmolar_right"];
 	 
	 jQuery.each(toothPositions,function(){
		doRollover = createRollover(this);
		doRollover();
		
	 }); 
	
		 
	 
	function createRollover(tooth_position){
		
		code="$('."+tooth_position+"').mouseover(function(){$('#image_map').attr('src','images/web_graphics/positioning_tutorial/"+tooth_position+".jpg');}).mouseout(function(){$('#image_map').attr('src','images/web_graphics/positioning_tutorial/all.jpg')});";
		
		return new Function(code);
	}

 });

