/*
 * anaskyshop General js
 *   @require Gnavi.js
 *   @require jquery 1.2.6 -
 *   Copyright (C) ANA Trading Co.,Ltd. All Rights Reserved.
 */

// pull down
$(function(){
	$('ul#subNav li').hover(function(){
		$(this).find('.pulldown').show();
	}, function(){
		$(this).find('.pulldown').hide();
	});
});
