/*
onerror=function() {
	return true;
}
*/

jQuery(function() {


	jQuery('img.mc2m_rollover').mouseover(function() {

		this.savedSrc=this.getAttribute('src');
		this.setAttribute('src', this.getAttribute('src2'));
		jQuery(this).mouseout(function() {
			this.setAttribute('src', this.savedSrc);
		});
	});

});
