var carfaxLoader = {	load: function(url) {		jQuery.get(url,function(data) {			jQuery('#carfaxReport').html(data);		})	},	assignEvents: function() {		jQuery("#carfaxReport").mouseover(function() {			jQuery('#carfax_highlight').show();		}).mouseout(function() {			jQuery('#carfax_highlight').hide();		})	}	}
