// index.js

// index sort
$(function() {
	$('.index_nav_sort li.sort_bub_cmp a').mouseover(function() {
		$('.index_nav_sort_bubble li.sort_bub_cmp').attr('style','display:block;');
	}).mouseout(function() {
		$('.index_nav_sort_bubble li.sort_bub_cmp').attr('style','display:none;');
	});
});
$(function() {
	$('.index_nav_sort li.sort_bub_fod a').mouseover(function() {
		$('.index_nav_sort_bubble li.sort_bub_fod').attr('style','display:block;');
	}).mouseout(function() {
		$('.index_nav_sort_bubble li.sort_bub_fod').attr('style','display:none;');
	});
});
$(function() {
	$('.index_nav_sort li.sort_bub_fsh a').mouseover(function() {
		$('.index_nav_sort_bubble li.sort_bub_fsh').attr('style','display:block;');
	}).mouseout(function() {
		$('.index_nav_sort_bubble li.sort_bub_fsh').attr('style','display:none;');
	});
});
$(function() {
	$('.index_nav_sort li.sort_bub_liv a').mouseover(function() {
		$('.index_nav_sort_bubble li.sort_bub_liv').attr('style','display:block;');
	}).mouseout(function() {
		$('.index_nav_sort_bubble li.sort_bub_liv').attr('style','display:none;');
	});
});
$(function() {
	$('.index_nav_sort li.sort_bub_srv a').mouseover(function() {
		$('.index_nav_sort_bubble li.sort_bub_srv').attr('style','display:block;');
	}).mouseout(function() {
		$('.index_nav_sort_bubble li.sort_bub_srv').attr('style','display:none;');
	});
});

// index footermenu
$(document).ready(function() {
	$('#footer_banner dl:first-child').addClass('firstchild');
});

$(function(){
	setInterval(function(){
		if (!window.target_h) return;
		var n = $("#flashWrapper").height();
			n+= (window.target_h - n) * 0.5;
		$("#flashWrapper").height(n);
	}, 30);
	window.adjust = function(arg) {
		window.target_h = (arg<350) ? 350 : arg;
	}
});

// PopUp
function Wopen(U,N,W,H){
	var WO1;
	var centerH=(screen.height-H)/2;
	var centerW=(screen.width-W)/2;
WO1=window.open(U,N,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,width='+ W +',height='+ H +',left='+ centerW +',top='+ centerH +'');
	WO1.focus();
			}
function win_top(id){
	if(id==1){
		Wopen("test.html","tvcm",850,540);
	}
	if(id==2){
		Wopen("/summergift/tvcm.html","tvcm",850,540);
	}
}

// rollover
jQuery(document).ready(function($) {
	var postfix = '_on';
	$('#area_noflash img').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_on = src.substr(0, src.lastIndexOf('.'))
			+ postfix
			+ src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_on);
		img.hover(
			function() {
				img.attr('src', src_on);
			},
			function() {
				img.attr('src', src);
			}
		);
	});
});

