function sizeNormal() {
	jQuery('#mcon .textwrap').css({
		'font-size':	'11px',
		'line-height':	'22px'
	});
}

function sizePlus() {
	var oldSize = parseInt(jQuery('#mcon .textwrap').css('font-size').replace("px","")) + 2;
	var oldHeight = parseInt(jQuery('#mcon .textwrap').css('line-height').replace("px","")) + 2;
	if (oldSize > 17)
		oldSize = 17;
	if (oldHeight > 28)
		oldHeight = 28;
	jQuery('#mcon .textwrap').css({
		'font-size':	oldSize + 'px',
		'line-height':	oldHeight + 'px'
	});
}

function sizeMinus() {
	var oldSize = parseInt(jQuery('#mcon .textwrap').css('font-size').replace("px","")) - 2;
	var oldHeight = parseInt(jQuery('#mcon .textwrap').css('line-height').replace("px","")) - 2;
	if (oldSize < 9)
		oldSize = 9;
	if (oldHeight < 20)
		oldHeight = 20;
	jQuery('#mcon .textwrap').css({
		'font-size':	oldSize + 'px',
		'line-height':	oldHeight + 'px'
	});
}


jQuery(document).ready(function(){

	jQuery('.csc-textpic-imagerow').css('display','none');
	jQuery('.csc-textpic-imagerow:first').css('display','block');


});

