function getXMLHTTPRequest(){
	try{
		req=new XMLHttpRequest();
	}
	catch(err1){
		try{
			req=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch(err2){
			try{
				req=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch(err3){
				req=false;
			}
		}
	}
	return req;
}
var http=getXMLHTTPRequest();
jQuery.preloadImages = function(){
	for(var i = 0; i<arguments.length; i++){
		jQuery("<img>").attr("src", arguments[i]);
	}
}
$(function(){
	$("img.rollover").hover(
		function(){
			this.src = this.src.replace("_off","_on");
		},
		function(){
			this.src = this.src.replace("_on","_off");
		}
	);
})
