// JavaScript Document
$(document).ready( function(){

  $("#tools-text").hide();
  $("#secure-text").hide();
  $("#totally-diy-rollover img").addClass("active");
  $(".three-in-one").show();
    
    $("#totally-diy-rollover").mouseenter( function(eventObject){
                                                   $("#diy-text").show();
                                                   $("#tools-text").hide();
                                                   $("#secure-text").hide();
                                                   $("#totally-diy-rollover img").addClass("active");
                                                   $("#totally-tools-rollover img").removeClass("active");
                                                   $("#totally-secure-rollover img").removeClass("active");
                                                   
                                               });
    
    $("#totally-tools-rollover").mouseenter( function(eventObject){
                                                   $("#diy-text").hide();
                                                   $("#tools-text").show();
                                                   $("#secure-text").hide();
                                                   $("#totally-diy-rollover img").removeClass("active");
                                                   $("#totally-tools-rollover img").addClass("active");
                                                   $("#totally-secure-rollover img").removeClass("active");
                                                   
                                               });
    
    $("#totally-secure-rollover").mouseenter( function(eventObject){
                                                   $("#diy-text").hide();
                                                   $("#tools-text").hide();
                                                   $("#secure-text").show();
                                                   $("#totally-diy-rollover img").removeClass("active");
                                                   $("#totally-tools-rollover img").removeClass("active");
                                                   $("#totally-secure-rollover img").addClass("active");

                                                   
                                               });

});

