// no conflicts with other frameworks
var $j = jQuery.noConflict();

//
// window.onload function to setup various javascripts
//

// initialize yoxview
  
$j(document).ready(function(){
    $j("#latestphotos").yoxview(
        { 
            //[options - leave blank with curly brackets if none]
        },
        { 
            dataSource: 'flickr',
            dataSourceOptions: {
                user: '51796905@N05',
                photoset_id: '72157624452787332/'
            }
        }
    );
});


