jQuery(document).ready(function () {
	
		jQuery('.player1').click(function(){
			jQuery('.mess#player1').fadeIn('slow');
			jQuery('#nero').css("display", "block");
			
				jQuery('#nero').click(function(){
					jQuery('#nero').css("display", "none");
					jQuery('.mess#player1').fadeOut('slow');
				});
				
		});
		jQuery('.player2').click(function(){
			jQuery('.mess#player2').fadeIn('slow');
			jQuery('#nero').css("display", "block");
			
			jQuery('#nero').click(function(){
					jQuery('.mess#player2').fadeOut('slow');
					jQuery('#nero').css("display", "none");
				});
				
		});
		
	//ADS
	jQuery(function(){	
		jQuery("#viewer").imageScroller({
			frame:"viewerFrame",
			width:100,
			child:"a",
			auto:true
		}); 
	});
	 
	//TARGET_BLANK
	$(function(){
		jQuery('a.new-window').click(function(){
			window.open(this.href);
			return false;
		});
	});
	

});

