// JavaScript Document
var ro = {};
ro.mouseOverImg = function() {
    if(isIE6=='true' && this.src.indexOf('.png')) {
               this.runtimeStyle.filter = this.runtimeStyle.filter.replace('.png', '-on.png');
    } else {
               this.src = this.src.replace('.png', '-on.png');
    }
};
ro.mouseOutImg = function() {
    if(isIE6=='true' && this.src.indexOf('.png')) {
               this.runtimeStyle.filter = this.runtimeStyle.filter.replace('-on.png', '.png');
    } else {
               this.src = this.src.replace('-on.png', '.png');
    }
};
$(document).ready(
	function() {
		contentList.init('commitmentList');
        $('#btdiscover').hover(ro.mouseOverImg, ro.mouseOutImg);
	}
);