/*
 * Custom JS (Menu Preview Handler)
 * Author: Matthew Machuga
 * Last Edited: July 21, 2009
 * Company: newline Creations
*/

	
$(document).ready(function(){
	
	$('div#box img').not('#default').hide();
	
	$('table#navigation a').click(function(event) {
		var picId = $(this).attr('id');
		$('div#box  img:visible').hide();
		$('div#box  #_'+picId).show();
		event.preventDefault();
	});
	
});

