$(function(){

	$('#gallery a').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.7,
		txtImage: '',
		txtOf: '/'
		});

	$('.cpage a img').hover(function(){
		var imgsrc = $(this).attr('src').replace('.','_ro.');
		$(this).attr('src',imgsrc);
		},function(){
		var imgsrc = $(this).attr('src').replace('_ro.','.');
		$(this).attr('src',imgsrc);
	});


});