//jQuery(document).ready(function(){
jQuery(window).load(function () {
	
	jQuery('.img_src').each(function(){		
		var src = jQuery(this).attr('title');
		//alert(src);
		var img = '<img src="'+src+'" border="0"/>'
		jQuery(this).append(img);
	});

   
	
});

