jQuery(document).ready(function() {
	$('#slider').nivoSlider({
		pauseTime: 5000
	});
	
	jQuery('#nav ul li').children('ul').css('display','none');
	jQuery('#nav ul li').hover(
		function(){
			$(this).find('ul').stop(true,true).show(350);
		}, 
		function(){
			$(this).children('ul').css('display','block');
			$(this).find('ul').stop(true,true).hide(350);
	});
	
	//hide by default
	jQuery('#tweet').hide();
	
	jQuery('#twitter_hover').hover(
		function(){
			$('#tweet').stop(true,true).slideDown(500);
		}, 
		function(){
			jQuery('#tweet').slideUp(500);
		}
	)
});
