// imageButton.js (Website Framework) || Version: 1.10 || Last Updated: 2010-07-21 12:00 || Updated by: Jelle Kingma || Created: 2009-02-27 by Hidde-Finne Peters
//--------------------------------------------------------------------------------------------------------------------------------------------------------------------
//	1.10:	Optimized in jQuery framework
//--------------------------------------------------------------------------------------------------------------------------------------------------------------------


function initializeJavascriptButtons () {
	var elements = jQuery.merge($("img[id$='_button']"), $("input[type=image]"));
	elements.each(function () {
		$(this).mouseover(function() {
			this.src = this.src.replace(new RegExp('_default\\b'), '_over');
		});
		$(this).mouseout(function() {
			this.src = this.src.replace(new RegExp('_over\\b'), '_default');
		});
	});
}

$('document').ready(initializeJavascriptButtons);
