Vicosys = {
	url_root : null,
	url_suffix : null,
	controller : null,
	method : null,
	
	init : function(iObj) {
		this.url_root = iObj.url_root;
		this.url_suffix = iObj.url_suffix;
		this.controller = iObj.controller;
		this.method = iObj.method;
		
		$('img.rollover')
			.bind('mouseover',function(event){ Vicosys.image.mover(this); })
			.bind('mouseout',function(event){ Vicosys.image.mout(this); });
	},
	
	image : {
		mover : function(el) {
			var el = $(el);
			el.attr('src', el.attr('src').replace('rollout', 'rollover') );
		},
		mout : function(el) {
			var el = $(el);
			el.attr('src', el.attr('src').replace('rollover', 'rollout') );
		}
	}
}
