var imgPath="images/homepage/";
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
//$(window).bind("load", function() {
jQuery(document).ready(function() {
   $("#hpimage").attr("src", imgPath+"homepage_tabs.jpg");
   $("#simplify").hover(function() {
      $("#hpimage").attr("src", imgPath+"simplify_tabs.jpg");
   });
   $("#empower").hover(function() {
      $("#hpimage").attr("src", imgPath+"empower_tabs.jpg");
   });
   $("#grow").hover(function() {
      $("#hpimage").attr("src", imgPath+"grow_tabs.jpg");
   });
   $("#imagecontainer").hover(function() {
   },function(){
      $("#hpimage").attr("src", imgPath+"homepage_tabs.jpg");
   });
   $.preloadImages(imgPath+"simplify_tabs.jpg", imgPath+"empower_tabs.jpg", imgPath+"grow_tabs.jpg");
});
