/*
$(document).ready(function() {

	if(!disabled_swap) {
		$('div.csc-textpic-imagewrap div:odd').hide();
		$('div.csc-textpic-imagewrap div:even').mouseover(function () {
			$(this).hide();
			$(this).next().show();
			$(this).next().mouseleave(function () {$(this).hide();$(this).prev().show();});
		});
	}
});

*/
