$(document).ready(function(){
	
	// ==== main nav ==== //
	/* Turned off due to background fades diminishing performance, uses css hover instead
	$('#nav li').not('#nav li.active').hover(function(){
		$(this).children('a').animate({ marginTop: 0}, 200);
	}, function() {
		$(this).children('a').animate({ marginTop: -30}, 200);
	});
	*/
	
	getTwitters('tweet', { 
    id: 'beecherofficial', 
    count: 1, 
    enableLinks: true, 
    ignoreReplies: true, 
    clearContents: true,
    template: '"%text%" <a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
  });

	// ==== Background fades ==== //
	$('#bg').cycle({ 
	    fx:    'fade', 
	    speed:  3000,
	timeout: 	1500,
	 });
	
});


