/* 
	Author: Eliot Kristan
	Website: eliotk.net	
	
	** requires jquery.js **
*/
/* function to replace standard image with rolled over image */
function replaceImage(divid, source, fullimgsource) {
	$('#'+divid).html("<a href='"+fullimgsource+"' target='_blank'><img src='"+source+"' />");
}



/* function to preload images from http://www.texotela.co.uk/code/jquery/preload/ */
jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}