jQuery(function($){
	$.preload( '#cntNav img.rollover', {
	    	find:'.jpg',
	    	replace:'-on.jpg'
	});
	/*		or
	$('#rollover-images img').preload({
		find:'.jpg',
	    replace:'-on.jpg'
	});
	*/
	//add animation
	$('#cntNav img.rollover').hover(function(){
		if (this.className == 'rollover') {
			this.src = this.src.replace('.jpg','-on.jpg');
		}
	},function(){
		if (this.className == 'rollover') {
			this.src = this.src.replace('-on','');
		}
	});
});