$(document).ready(function () {
	$('#nonFlash #trusted').hide();
	$('#nonFlash #clean').hide();	
	$('#nonFlash #MSN').hide();	
	$('#nonFlash a.fast').hide();
	
	$('#nonFlash a').hover(function() {
					$(this).addClass('hover');
					},
					function() {
					$(this).removeClass('hover');
										
	});
	
	$('#nonFlash .fast').mousedown(function () {
					$('#nonFlash a').show();
					$(this).hide();
					$('#nonFlash .article').fadeOut(1000);		
					$('#nonFlash #fast').fadeIn(1000);			 
	 });
	
	$('#nonFlash .trusted').mousedown(function () {
					$('#nonFlash a').show();
					$(this).hide();
					$('#nonFlash .article').fadeOut(1000);		
					$('#nonFlash #trusted').fadeIn(1000);			 
	 });
	
	$('#nonFlash .clean').mousedown(function () {
					$('#nonFlash a').show();
					$(this).hide();
					$('#nonFlash .article').fadeOut(1000);		
					$('#nonFlash #clean').fadeIn(1000);			 
	 });
	
	$('#nonFlash .MSN').mousedown(function () {
					$('#nonFlash a').show();
					$(this).hide();
					$('#nonFlash .article').fadeOut(1000);		
					$('#nonFlash #MSN').fadeIn(1000);			 
	 });
							
});
