$(document).ready(function(){

	$("img[@id='eyes']").each(function(i){
		
		//Image source
		var source = $('#'+this.id).attr('src');
		
		//Apply on hover
		$('#'+this.id).hover(function()
		{
			//Split string to add over image
			var sourceSplit = source.split('.');
			
			$('#'+this.id).attr({src: sourceSplit[0]+"_over.gif"});
			
			
		}, function()
		{
			$('#'+this.id).attr({src: source});
		
			
		});
	});
	
		$("img[@id='face']").each(function(i){
		
		//Image source
		var source = $('#'+this.id).attr('src');
		
		//Apply on hover
		$('#'+this.id).hover(function()
		{
			//Split string to add over image
			var sourceSplit = source.split('.');
			
			$('#'+this.id).attr({src: sourceSplit[0]+"_over.gif"});
			
			
		}, function()
		{
			$('#'+this.id).attr({src: source});
		
			
		});
	});

});