	$(document).ready(function() {
			$('a').tooltip({
				track: true,
				delay: 0,
				showURL: false,
				showBody: " - ",
				fade: 50
			});
			$('dfn').tooltip({
				track: true,
				delay: 0,
				showBody: " - ",
				fade: 50
			});
			
			if ($("a.mik_sudoku").length) {
				$("a.mik_sudoku").fancybox({
					'width'				: 580,
					'height'			: 650,
					'autoScale'    	: false,
					'transitionIn'	: 'none',
					'transitionOut' : 'none',
					'centerOnScroll': true,
					'overlayOpacity': 0.6,
					'overlayColor'  : '#004080',
					'onClosed'      : function() {
						parent.location.reload();
					},
					'type'				: 'iframe'
				});
			}
			
			
		});

