 $.preloadImages = function()
{
for(var i = 0; i<arguments.length; i++)
{
img = new Image();
img.src = arguments[i];
}}
$.preloadImages("../images/home_img.jpg");
$(document).ready(function(){
        $("#wrapper_index").fadeIn(2000);
$("#home_img").click(function () {
      $("#home_img").fadeOut(1000,function () {
        $("#home_module_index").fadeIn(1000);
      });
 });
}); 
