$(function() {

    $.ajax({
        type: "GET",
        dataType: "jsonp",
        cache: false,
        url: "https://api.instagram.com/v1/users/668437/media/recent/?access_token=2662.38d4151.626a21d46711413a94f2843a030710c4",
        success: function(data) {

            for (var i = 0; i < 6; i++) {
        $(".instagram").append("<div class='instagram-pic'><a target='_blank' href='" + data.data[i].link +"'><img class='instagram-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=c0af9601e3d64f368152e752ac1f125e&redirect_uri=http://danielpavitt.com/&response_type=token"; 
    
}

*/
