// JavaScript Document

$(function(){
	$(".has_sub").hover(function(){
		$("div.subnav",this).show();
	},function () {
		$("div.subnav",this).hide();
	})
})

$(document).ready(function(){
	$("#slideshow").cycle({
		fx: "scrollLeft",
		timeout: 4000,
		speed: 2000
	});
})
