$(document).ready(function(){

/* nav dropdowns */
	$('ul#menu-primary li').hoverIntent(
	function() { $('ul', this).stop(true, true).slideToggle(100); },
	function() { $('ul', this).stop(true, true).slideToggle(100);  },
	function() { $(this).addClass("subhover");}, function(){	$(this).removeClass("subhover");})

/* homepage cycle */
	$('div.t ul').cycle({
	fx:    'fade', 
	sync:   0,     
	next:   'div.t ul', 
	delay: 6000 	});
	
	$('div.welcome ul').cycle({
	fx:    'fade', 
	speed: 'slow',
	sync:   0,
	timeout: 7000 	});
	

    
});
