var imageFiles_dg_3 = new Array();
imageFiles_dg_3['0'] = new Array ('_images/dg_Home.gif', '_images/dg_HomeMouseover.gif');
imageFiles_dg_3['1'] = new Array ('_images/dg_Inventory.gif', '_images/dg_InventoryMouseover.gif');
imageFiles_dg_3['2'] = new Array ('_images/dg_About_Us.gif', '_images/dg_About_UsMouseover.gif');
imageFiles_dg_3['3'] = new Array ('_images/dg_Contact_Us.gif', '_images/dg_Contact_UsMouseover.gif');
imageFiles_dg_3['4'] = new Array ('_images/dg_Feedback.gif', '_images/dg_FeedbackMouseover.gif');

function image_on_dg_3 (position) {
   var doc = eval("document.imagedg_3" + position);
   doc.src = imageFiles_dg_3[position][1];
}

function image_off_dg_3 (position) {
   var doc = eval("document.imagedg_3" + position);
   doc.src = imageFiles_dg_3[position][0];
}

