// JavaScript Document


//ドロップダウン
$(function(){
	$('#globalnavi li').hover(function(){
		$(this).children('ul').show();
	},function(){
		$(this).children('ul').hide();
	});
});

//POPUP
function popUp(url) {
	window.open(url,'popup','width=520,height=340,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=no,toolbar=no');
}

//画像をスワップ

$(function(){
	$('.s_img img').hover(
	function(){
	$(this).parent().next().children().fadeOut();
	$(this).clone().css('display','none').attr('width','').attr('height','').appendTo($(this).parent().next()).fadeIn();
	},
	function(){
		
	}
	);
});