var imgPath = "/images/logos/";

$(function(){
	
	//clone process
	/*$('#TRISgrid1_DataList1 tr td').each(function(){
		
		if($(this).html()==="")
		{
			$(this).remove();	
		}
	});
	$('#TRISgrid1_DataList1 tr:first').append($('#TRISgrid1_DataList1 tr td:first').clone());
	$('#TRISgrid1_DataList1 tr:first').append($('#TRISgrid1_DataList1 tr td:first').clone());
	
	for(var i=0; i<2; i++)
	{
		$('#TRISgrid1_DataList1').append($('#TRISgrid1_DataList1 tr:first').clone());
	}*/
	
	
	
	$('img.grid_img_item').each(function(id){
		//$(this).attr('src',imgPath + $(this).attr('alt').toLowerCase().replace(/\s/g,'_')+'.jpg');
		$(this).attr('src',imgPath + $(this).attr('alt').toLowerCase().split(/\s/)[0]+'.jpg');
		
		//$(this).attr('src',imgPath + 'test-logo.jpg');
		
	});

})
