// JavaScript Document
//	jQuery(function($){
    $(document).ready(function(){					
				
		Cufon.replace('.newsgot_underlined', {
			fontFamily: 'newsgottmed',
			hover: true,
			textShadow: '#000000 1px 1px'
		});
		Cufon.replace('.newsgot', {
			fontFamily: 'newsgottmed',					  
			hover: true
		});
		Cufon.replace('.newsgot_l, .na_form legend', {
			fontFamily: 'newsgottlig',					  
			hover: true
		});
		
//		$('a[rel=external]').attr('target', '_blank');
		$('a[rel*="external"]').click(function(){
			window.open(this.href);
			return false;
		});

		$('.banner_top').animate({
			top: '+=80'
		  }, 500, 'swing', function() {
				$('.banner_bottom').animate({
					bottom: '+=208'
				}, 600, 'swing', function() {
				// Animation complete.
				});		
		});
		
		$('.banner_bottom_2').animate({
			bottom: '+=255'

		  }, 600, 'swing', function() {
			// Animation complete.
		});		
				
	});
