$(function() {

    $.ajax({
    	type: "GET",
        dataType: "jsonp",
        cache: false,
        url: "https://api.instagram.com/v1/users/7719492/media/recent/?access_token=1055710.c0af960.953163eb1bf44607a94ad482e33b5b68",       	
        success: function(data) {

            for (var i = 0; i < data.data.length; i++) {
        $(".instagramhome").append("<div class='instagramhome-placeholder'><a target='_blank' href='" + data.data[i].link +"'><img class='instagramhome-image' src='" + data.data[i].images.thumbnail.url +"' /></a></div>");   
      		}     
                            
        }
    });
});

/*

var access_token = location.hash.split('=')[1];

if (location.hash) {


} else {
    location.href="https://instagram.com/oauth/authorize/?display=touch&client_id=0b6f203aa8bc4a78a8fdc77c87c9629b&redirect_uri=http://iamaudi.com/&response_type=token"; 
    
}

*/

