// JavaScript Document

jQuery(document).ready(function() 
{
	
	jQuery.preloadImages = function() {
	  for(var i = 0; i<arguments.length; i++)
	  {
		jQuery("<img>").attr("src", arguments[i]);
	  }
	}
	
	jQuery.preloadImages('/images/framework/google-b.gif');
	
	if(jQuery(".productPics") || jQuery(".locationPics")) {
	    jQuery("a.lightbox").lightBox();
	}
	
    //$('#thumbs a').lightBox();

});



