var ec = new function()
{
	this.initialize = function()
	{
		ec.setAltTag();
	}
	
	this.setAltTag = function()
	{
		$('img').each(function()
		{
			var title = "";
			
			if($(this).attr("alt"))
				title += $(this).attr("alt")+" - ";

			var s = new String($(this).attr("src"));
			var s_array = $(this).attr("src").split("/");
			title += s_array[s_array.length-1];
				
			$(this).attr("title", title);
			
			if(!$(this).attr("alt"))
				$(this).attr("alt", title);
		});
	}
}

$(document).ready(ec.initialize);