/**
 * Adds the inobtrusive image replacement for all image controls in the GPP header
 *
 * @author Marek
 */
$(window).load(function() {
	$(".imagecontrols img").each(function() {
		$(this).mouseover(function() {
			this.src = this.src.replace(".gif", "_hover.gif");
		});

		$(this).mouseout(function() {
			this.src = this.src.replace("_hover", "");
		});
	});
});
