jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
$(function() {
	if (!$("#qtip-blanket")[0]) {
		$('<div id="qtip-blanket">').css({
			position: 'absolute',
			top: 0,
			left: 0,
			height: $(document).height(),
			width: '100%',
			opacity: 0.7,
			backgroundColor: 'black',
			zIndex: 5000
		}).appendTo(document.body).hide();
	}
});
// $.preloadImages("");