// roll_o_ver.js
// use this file for the sign rollover effect

jQuery(document).ready( function()
{

// Array of images:
var image = ['http://www.seanplusplus.com/wp-content/themes/cordobo-green-park-2/img/SeanPlusPlus_Logo_o.png'];
 
// Loop through and declare an element that will not actually be used.
$.each(imageArray, function (i, val) {
  $('<img/>').attr('src', val);
});

});





