jQuery(document).ready(function() {
	// do something here

});

function data_loaded() {

	$.getJSON("http://twitter.com/status/user_timeline/fashionbuddha.json?count=20&callback=?", function(data){

	var flashMovie = getFlashMovieObject("fashionbuddha");
	
	flashMovie.jsonFire(data);
	
	//console.log('local json inside callback data '+data)

	});
}

function getFlashMovieObject(movieName){

    if (window.document[movieName]){

        return window.document[movieName];

    }

    if (navigator.appName.indexOf("Microsoft Internet")==-1){

        if (document.embeds && document.embeds[movieName])

            return document.embeds[movieName];

    }

    else{

        return document.getElementById(movieName);

    }

}

