jQuery(document).ready(function() {
	jQuery('#sobre_nos').hide();
	jQuery('a#sobre_but').click(function() {
	jQuery('#sobre_nos').toggle(400);
	return false;
	});
	jQuery('a#sobre_but').click(function() {
	jQuery('li#sobre').toggleClass('on');
	return false;
	});

	
    jQuery.ajax({
        url: 'http://api.twitter.com/1/users/show.json',
        data: {screen_name: 'brenda_f'},
        dataType: 'jsonp',
        success: function(data) {
            jQuery('#followers_bre').html(data.followers_count);
        }
    });
	jQuery.ajax({
        url: 'http://api.twitter.com/1/users/show.json',
        data: {screen_name: 'lazyink'},
        dataType: 'jsonp',
        success: function(data) {
            jQuery('#followers_bren').html(data.followers_count);
        }
    });

	

});