
$(document).ready(function(){
	// killthe round white box on the galery
		function isPicGalery(){
		 var areThumbsAvailable;
		 jQuery('#mcontent div').each(function(idx,item){
		  if(jQuery(item).attr('id')=='thumbshow'){
		   areThumbsAvailable=true;
		   return; 
		  }
		 });
		 return areThumbsAvailable;
	}

	if(!isPicGalery()||!$('#mcontent').length==0){
		// draw the white round box
		
		if($('#mcontent img+div').text()!=0){
			var box = $('#mcontent div');
			var bxt = box.css('top');
			var bxl = box.css('left');
			var bxw = box.css('width');
			var bxh = box.css('height');
			var bxtxt = box.html();
			box.addClass('box_content').css({overflow:'visible'}).html('<div class="box_text"></div><div class="box_header"><div class="box_header_curve_left"></div><div class="box_header_curve_right"></div></div><div id="borderleft_number_" class="box_border_left"></div><div id="borderright_number_" class="box_border_right"></div><div id="footer_number_" class="box_footer"><div class="box_footer_curve_left boxpngfix"></div><div class="box_footer_curve_right boxpngfix"></div></div>');
			$('.box_text').html(bxtxt);
			box.css({top:bxt,left:bxl,width:bxw,height:bxh,overflow:'visible'});
		}
	}
});










