/*
//*******
//
//	filename: random.js
//	author: Damian Herrington
//	date: 24th November 2011
//
//*******
*/

var $j = jQuery.noConflict();

//
$j(document).ready(function()
{
	var myQuotes = new Array(); 
      myQuotes[0] = "design &amp; develop websites"; 
      myQuotes[1] = "design &amp; develop e-commerce systems"; 
      myQuotes[2] = "integrate a content management system (cms)";
      myQuotes[3] = "design simple, usable and beautiful interfaces"; 
      
      var myRandom = Math.floor(Math.random()*myQuotes.length);
      
      $j('#i_can span').html(myQuotes[myRandom]);
});
