// JavaScript Document
/* The nav jQuery */
$(document).ready(function() {
/*$('.nav_cell, .nav_cell_tall').find('.nav_mo').hide();
	$('.nav_cell_selected, .nav_cell_tall_selected').find('.nav_reg').hide();
	
	$('.nav_cell, .nav_cell_tall').mouseover(function() {
		$(this).find('.nav_reg').hide();
		$(this).find('.nav_mo').show();
	});
	
	$('.nav_cell, .nav_cell_tall').mouseout(function() {
		$(this).find('.nav_reg').show();
		$(this).find('.nav_mo').hide();
	});*/
});
