// prettyPhoto Script Init
     $(document).ready(function(){
		$("a[rel^='prettyPhoto']").prettyPhoto({
			animationSpeed: 'normal', /* fast/slow/normal */
			opacity: 0.80, /* Value between 0 and 1 */
			showTitle: false, /* true/false */
			social_tools: false
		});
	});

// Superfish	
	$(document).ready(function() { 
      	$('ul.sf-menu').superfish({ 
            delay:       1000,             
            animation:   {height:'show'},  
            speed:       'fast',           
            autoArrows:  false,           	
            dropShadows: true                    
        }); 
    });
    
// Slider controller
	$('#slider').cycle({ 
		fx:      'fade', 
		speed:    1000, 
		timeout:  5000,
		pager:  '#pager'  
	});
	

// Tweeter Scripts
    $(document).ready(function(){
        $(".tweet").tweet({
            username: "BrownstoneFW",
            join_text: "auto",
            avatar_size: 32,
            count: 3,
            auto_join_text_default: " ",
            auto_join_text_ed: " ",
            auto_join_text_ing: " ",
            auto_join_text_reply: " ",
            auto_join_text_url: " ",
            loading_text: "loading tweets..."
        });
    });
