var username = 'oliviawoods'; function Link(favico, link, title, sourceUrl, source) { this.favico = favico; this.link = link; this.title = title; this.sourceUrl = sourceUrl; this.source = source; } function Mashups() { links = new Array(); links[0] = new Link("/images/favicons/delicious.gif", "http://css-tricks.com/the-light-cms-trend/", "The ?Light? CMS Trend - CSS-Tricks", "http://delicious.com/emptyhands", "Delicious/emptyhands"); links[1] = new Link("/images/favicons/delicious.gif", "http://www.impressivewebs.com/a-primer-on-the-css-font-shorthand-property/", "A Primer on the CSS Font Shorthand Property - Impressive Webs", "http://delicious.com/emptyhands", "Delicious/emptyhands"); links[2] = new Link("/images/favicons/delicious.gif", "http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-an-illustrative-web-design-in-photoshop/", "How to Create an Illustrative Web Design in Photoshop - Six Revisions", "http://delicious.com/emptyhands", "Delicious/emptyhands"); links[3] = new Link("/images/favicons/delicious.gif", "http://sixrevisions.com/tools/25-excellent-typography-tools-for-the-serious-designer/", "25 Excellent Typography Tools for the Serious Designer", "http://delicious.com/emptyhands", "Delicious/emptyhands"); links[4] = new Link("/images/favicons/delicious.gif", "http://www.smashingmagazine.com/2007/05/18/30-best-solutions-for-image-galleries-slideshows-lightboxes/", "30 Scripts For Galleries, Slideshows and Lightboxes - Smashing Magazine", "http://delicious.com/emptyhands", "Delicious/emptyhands"); links[5] = new Link("/images/favicons/delicious.gif", "http://diggingintowordpress.com/", "Digging Into WordPress", "http://delicious.com/emptyhands", "Delicious/emptyhands"); links[6] = new Link("/images/favicons/default.gif", "http://oliviawoods.com/blog/?p=102", "Thoughts on Black-Beltedness", "http://oliviawoods.com/blog", "Olivia's Blog"); links[7] = new Link("/images/favicons/flickr.gif", "http://www.flickr.com/photos/oliviawoods/3628805319/", "2009 Uechiryu Butokukai Black Belt Graduation", "http://www.flickr.com/photos/oliviawoods/", "Uploads from Olivia Imagery"); return links; }