	$(document).ready(function(){
		$("td.nav_item").hover(
	      function () {
	        $(this).addClass('nav_hover');
			$(this).children('a').css('color', '#000');
	      }, 
	      function () {
	        $(this).removeClass('nav_hover');
			$(this).children('a').css('color', '#600');
      	});
		 var sboxOpts = {
			counterType: 'skip',
			continuous: true 
		 };
		 Shadowbox.init(sboxOpts);
		$(".round").corner("10px");
	});