// JavaScript Document

// IE6以下で透過PNGを使用する設定
if(isMSIE && getBrowserVersion() <= 6) {
	DD_belatedPNG.fix('.pngfix');
}


$(document).ready(function(){

	// フィードダイアログの設定
	$('#feeda_icon img').css({'cursor': 'pointer'});
	$("#feed_dialog").hide();
	$('#feeda_icon img').click(function() {
		$("#feed_dialog").dialog({
			 open: function(event, ui) { move_feeds_psitin(); }
		});
	});

	// フィードダイアログの位置を指定
	function move_feeds_psitin() {
		var feeds_psitin = $('#feeda_icon').offset();
		var move_psitin_x = feeds_psitin.left - 270;
		var move_psitin_y = feeds_psitin.top + 25;
		$(".ui-dialog").offset({top: move_psitin_y, left: move_psitin_x});
	}

	// メールアドレスへのリンクの設定
	$('.mailto_shop').add_mailTo({
		mail_address: 'sh&#111;&#112;&#64;fu&#107;u&#121;a&#45;ki&#109;on&#111;&#46;&#99;o&#109;'
	});
	$('#helpnavi_mail').add_mailTo({
		mail_address: 'sh&#111;&#112;&#64;fu&#107;u&#121;a&#45;ki&#109;on&#111;&#46;&#99;o&#109;'
	});
	$('#mailto_shopbnr').add_mailTo({
		mail_address: 'sh&#111;&#112;&#64;fu&#107;u&#121;a&#45;ki&#109;on&#111;&#46;&#99;o&#109;'
	});

	$('.mailto_fykuya1').add_mailTo({
		mail_address: 'fy&#107;&#117;y&#97;&#49;&#64;to&#112;az&#46;ocn&#46;ne&#46;j&#112;'
	});

	// ロールオーバーの設定
	$('.rollover').rollover({suffix: '_roll'});

	// ColorBoxの設定
	$('.colorbox').colorbox();
	$('#user_gallery .colorbox').colorbox({rel: 'group1', width: '700px'});

	// ズームアイコン･カーソルの設定
	$('.colorbox').colorbox_magnifier();

	if ($(".topCatID_2").length) {  
		$('.colorbox_gallery').colorbox({rel: 'group1'});
		$('.colorbox_gallery').colorbox_magnifier();
	}

	// Windows XPでメイリオがインストールされていなったら、h1～h6をboldにする
	var ua = navigator.userAgent;
	if(ua.indexOf("Windows NT 5.1") != -1){
		var detective = new Detector();
		if(!detective.test('メイリオ')) {
			$('*:header, strong').css({'font-weight': 'bold'});
		}
	}
	if(ua.indexOf("Windows NT 5.0") != -1){
		$('*:header, strong').css({'font-weight': 'bold'});
	}
	if(ua.indexOf("Windows 9x 4.9") != -1){
		$('*:header, strong').css({'font-weight': 'bold'});
	}

});

