jQuery(document).ready(function($){

/*
 * 		Top Navigation (Dropdown Menu)
 */


	(function($) {
		jQuery("#nav li.sub").hover(
			function() {
				jQuery(this).find('ul:not(:animated)').fadeIn("fast");
				jQuery('ul:first',this).css('visibility', 'visible');
			},
			function() {
				jQuery(this).find('ul:not(:animated)').fadeOut("fast");
				jQuery('ul:first',this).css('visibility', 'hidden');
			}
		)
	})(jQuery);

           

/*
 * 		Latest News Scroller
 */
 
 	jQuery('#latest-news ul').cycle({ 
	    fx: 'scrollVert',
		speed: 650,
		rev: true,
		timeout: 10000,
		next:   '#latest-news ol li.next', 
	    prev:   '#latest-news ol li.previous'
	 });      
		
	jQuery('#testimonials ul').cycle({ 
	   fx: 'scrollVert',
		speed: 650,
		rev: true,
		timeout: 10000,
		next:   '#testimonials ol li.next', 
	    prev:   '#testimonials ol li.previous'
	});
 
});
