﻿/*

Copyright (C) 2009 EZ-Coupon Search

*/

//Define a new Function inside jQuery Library for Importing JavaScript Files
$.importJS = function(jsName) {
  document.write('<script type="text/javascript" src="' + jsName + '"></script>');
}

//Define Image Preloader Function for jQuery Library
$.preloadImages = function() {
  //Lopp through all the Parameters passed into function
  for (var i = 0; i < arguments.length; i++) {
    //Create a new IMG tag and assign/load an Image into it.
    $("<img>").attr("src", arguments[i]);
  }
}