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>Graphique is Hiring!</strong></p><p>That's right folks. Graphique is looking for qualified applicants for 2 separate positions on our team. First, we are looking for a Web Programmer/Designer. We are also looking for a Social Media Coordinator. Make sure to <a href=\"/_blog/DesignIQ\">check the blog</a> for a list of qualifications.</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]);}


