$(function() {
// Cycle 
    $('#banner').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 7000,
        pager:  '#banner-nav'
    });
    
    
    $('#mfg').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 0,
        prev:	'#mfg-nav .prev',
        next:	'#mfg-nav .next'
    });

   
//Dropdown    
    	$("#nav ul li").hover(function(){
		$(this).addClass("hover");
		$('> .parent',this).addClass("open");
		$('ul:first',this).slideDown(100);
	},
	function(){
		$(this).removeClass("hover");
		$('.open',this).removeClass("open");
		$('ul:first',this).hide();
	});
	
//Twitter
	$("#twitter").getTwitter({
		userName: "ddandw",
		numTweets: 3,
		slideIn: true,
		slideDuration: 750,
		showHeading: true,
		showTimestamp: true
	});
    
    
});
