// The following is powered by Cycle Lite plugin for jQuery -- http://jquery.malsup.com/cycle/lite/
$(function() {
    $('#intro_banner').cycle({
		    timeout:       7000
	});
    $('#intro_copy').cycle({
		    timeout:       7000
	});
});

$(function(){
	$('li.nav').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });
});

