$(function() {
	
	// linkscrubber 
	$("a").bind("focus",function(){if(this.blur)this.blur();});
	$("input[type='image']").bind("focus",function(){if(this.blur)this.blur();});
	
	// topnav dropdown
	$('#tnav02,#tnav03,#tnav05,#tnav06').hover(function(){
		$nav = $(this).attr('id');
		$('.'+$nav).show();
	}, function(){
		$('.'+$nav).hide();
	});
	$('.tnav02,.tnav03,.tnav05,.tnav06').hover(function(){
		$(this).show();
		$nav = $(this).attr('class');
		$('#'+$nav+' a').addClass('active');
	}, function(){
		$(this).hide();
		$('#'+$nav+' a').removeClass('active');
	});

	$("a.register").fancybox({
			'transitionIn' : 'none',
			'transitionOut' : 'none',
			'overlayOpacity' : '0.9',
			'autoScale' : true,
			'scrolling' : 'auto',
			'width' : '340',
			'height' : '700'
		});
	
	
});
