$(document).ready(function(){
	
	$(".slide-container").cycle({
		fx:'turnDown',
		delay:-4000
	});
	
	$("#top-nav li").hover(
		function(){
			$("ul", this).show('normal');
		},
		function(){
			$("ul", this).hide('normal');
		}
	);
	
//	$("#footer a").colorbox();

})
