var popup;

$( function(){

	//メールアドレス処理
	var addr = $('address:first');
	addr.parent().html( '<address>' + addr.text().split('-').join('') + '</address>' );

	popup = $('<div><p/></div>').appendTo( $('#header') ).hide().css( {
		color: '#3f3f3f',
		position: 'absolute',
		background: 'url(css/popup.png) no-repeat',
		width: 160,
		height: 64,
		left: 130,
		top: 13,
		cursor: 'pointer'
	} ).click( function(){
		if ( popup.timer ) return; //連打対策

		if (_gaq) _gaq.push(['_trackEvent', 'NapoleonClick']);

		popup.fadeOut( 400, function(){
			popup.timer = setInterval( function(){
				clearInterval( popup.timer );
				popup.timer = null;
				popup.children('p').load( "rd.php", {d:(new Date()).getTime()}, function(){
					if ( jQuery.browser.safari )
					{
						var esc = escape( popup.children('p').html() );
						if ( esc.indexOf("%u") < 0 && esc.indexOf("%") > -1 )
							popup.children('p').html(decodeURIComponent(esc));
					}
					popup.fadeIn( 400 );
				} );
			}, 5000 );
		} );
	} );
	popup.children('p').css( { fontSize: '12px', padding: '14px 18px 16px 27px', lineHeight: '1.4em' } );
	popup.click();

} );

