// JavaScript Document

$(document).ready(function() {

    /* -----------------------------------------
    Homepage page, fade in Apply now steps 
    ----------------------------------------------*/

    var self = this;
    $(this).find("img").hover(
      function() {
          $("div#main img").not(this).animate({
              opacity: 0.4
          });

          $("div#main img").not(this).parents().next("span").animate({
              opacity: 0.4

          });
      },
      function() {
          $("div#main img").animate({
              opacity: 1
          });
          $("div#main img").not(this).parents().next("span").animate({
              opacity: 1

          });
      }
    );
});