﻿/*
 * top.js - zenkyozu
 *
 * Copyright (c) 2010 GOshin.com
 *
 * jQuery 1.3.1
 */


$(function(){
	$("ul.topnav li").hover(function(){
		$(">ul:not(:animated)",this).slideDown("fast");
	},
	function(){
		$(">ul",this).slideUp("fast");
	});



	$('#top_img').jqFancyTransitions({ 
		effect: '',
		strips: 16,
		delay: 8000,
		position: 'top',
		direction: 'left',
		navigation: false,
		width: 940,
		height: 266,
		links: false
	});
});

