// JavaScript Document

$(document).ready(function()
{
	
	$("MktImg").error(function()
	{
		var ImagePath = this.rrc;
		
		if (ImagePath != null && ImagePath.length > 0)
		{
			//reset the src to empty
			this.src = "";
			
			//reset the src to the origional path
			this.src = ImagePath;
			
		}
		
		
	});
	
	$("DJIAmg").error(function()
	{
		var ImagePath = this.rrc;
		
		if (ImagePath != null && ImagePath.length > 0)
		{
			//reset the src to empty
			this.src = "";
			
			//reset the src to the origional path
			this.src = ImagePath;
			
		}
		
		
	});
	
	
	
	
	
});