
//alert('imagebodytekstscript');
//if(!isEditMode())
//{
$(document).ready(function(){
$("#MainBody img").each(function(){
if ($(this).attr('class') != null)
{
if ($(this).parent().get(0).tagName == "A")
{
$(this).parent().wrap("<div class=\"" + $(this).attr('class')+"\" ></div>");
//alert();
}
else
{
$(this).wrap("<div class=\"" + $(this).attr('class')+"\" ></div>");
//alert("<div class=\"" + $(this).attr('class')+"\" style=\"width:"+$(this).width()+"px;\""+"></div>");
}
$(this).removeClass($(this).attr('class'));
}
})});

$(document).ready(function(){
$("#MainBody img").each(function(){
if ($(this).attr('alt') != null)
{
$(this).after("<h5>" + $(this).attr('alt') +"</h5>");
}
})});
//}
