// JavaScript Document
$(document).ready(function() {
	
	var a = new Array();
	a['pdf']  = '/Images/ebps-pdf_tcm82-202029.gif';
	a['doc']  = '/Images/ebps-word_tcm82-202036.gif';
	a['swf']  = '/Images/ebps-flash_tcm82-202027.gif';
	a['vid']  = '/Images/ebps-windowsmedia_tcm82-202037.gif';
	a['calc'] = '/Images/ebps-calculator_tcm82-202025.jpg';
	a['xls']  = '/Images/ebps-excel_tcm82-202026.gif';
	a['new']  = '/Images/ebps-new_tcm82-202028.gif';	
	a['ppt']  = '/Images/ebps-ppt_tcm82-202035.gif';		
	a['upd']  = '/Images/ebps-updated_tcm82-202038.gif';
	a['wbc']  = '/Images/ebps-webcast_tcm82-204017.gif';

$('a[href*=#]').each( function()
	{
		var fileType = $(this).attr('href').substr(1);
		if(a[fileType] != null)
		$(this).replaceWith("<img src="+ a[fileType] +" alt="+ fileType +" class="+ fileType +" />");
	});

});
	
