$(function() { // wait for page to fully load

// if you want the text to revert on mouse out set this placeholder
var placeholdertext = "How to Videos";
// create an array of image text
var imagetext = new Array();
// assing text to each array note : 0 = first image
imagetext[0] = "Coming soon!";
// JQuery hover function
$("#replace").hover(function() {
// hover enter
// replace the heading text
$("#replace").text(imagetext[0]);

}, function() {

// hover exit
// revert the heading text back.
$("#replace").text(placeholdertext);

});
}); 
