var Blog=new Array() // do not change this!

// Set up the Blogs to be shown, below.
// To add more Blogs, continue with the
// pattern, adding to the array.  Remember
// to increment the Blog[x] index!

Blog[0] = "<p><strong>Happy Milk Cartons</strong></p><p>In a world where Apple has mastered the art of its brand through packaging, and Target's fun-loving attitude happily lines the shelves with Method, it's the design of food staples that has been woefully ignored. When was the last time you picked up a can of Garbanzo beans and thought to yourself \"Wow, what a cool can of beans?\"</p><p><a href=\"/_blog/DesignIQ\">Read the Blog »</a></p>";


// ======================================
// Do not change anything below this line
// ======================================

var B = Blog.length;
var whichBlog=Math.round(Math.random()*(B-1));
function showBlog(){document.write(Blog[whichBlog]);}

