$(function() {
	mouseovers(); 
}); 

function mouseovers() {
	$('.mouseover').mouseover(
		function() {
			var bn_src = this.src.substring(0, this.src.length - 4); 
			var bn_ext = this.src.substring(this.src.length - 4); 

			this.src = bn_src + '_mo' + bn_ext; 
		}
	).mouseout(
		function() {
			var bn_src = this.src.substring(0, this.src.length - 7); 
			var bn_ext = this.src.substring(this.src.length - 4); 

			this.src = bn_src + bn_ext;
		}
	);
}

/*
window.onload = init; 

function init() {
	// EVENT LISTENER FOR ROLLOVER
	var bn_quote = document.getElementById('bn_quote'); 

	bn_quote.addEventListener('mouseover', rollover, false); 
	bn_quote.addEventListener('mouseout', rollout, false); 
}

function rollover() {
	var bn_quote = document.getElementById('bn_quote'); 

	bn_quote.src = 'graphics/bn_quote_mo.png'; 
}

function rollout() {
	var bn_quote = document.getElementById('bn_quote'); 

	bn_quote.src = 'graphics/bn_quote.png'; 
}
*/