﻿// リンクをはるPDFファイル名
var fileName = 'newsletter.pdf';

// 画像のAlt
var altText = 'Hilton News最新号 / 最新パンフレット';

// 最後にスラッシュ（/）必須
var path = 'http://www.hiltonosaka.com/';



// ▼ここからは書き換えないでください。
var txt = '';
txt += '<a href="'+path+'modify/hilton_news/pdf/'+fileName+'" target="_blank">';
txt += '<img src="'+path+'modify/hilton_news/img/btn_01.jpg" alt="'+altText+'" /></a>';


$(function() {
	$('#hiltonNews').html(txt).css({
		'margin':'10px 0 0',
		'background':'url('+path+'modify/hilton_news/img/btn_01_on.jpg) 0 0 no-repeat'
	});
	
	$('#hiltonNews').hover(
		function(){
			$(this).find('img').stop().animate({'opacity':'0'}, 300);
		},
		function(){
			$(this).find('img').stop().animate({'opacity':'1'}, 1000);
		}
	);
});
