/*Start(BLUE): Added in to incoporate multiple jquery versions in a page*/
if(typeof Versions == "object")
	jQuery = Versions.use('jquery', '1.2.3');
/*End(BLUE): Added in to incoporate multiple jquery versions in a page*/
	
jQuery.fn.unwrap = function() {
  return this.parent().each(function( n, elem ){
    jQuery.nodeName( elem, 'body' ) || jQuery( elem ).replaceWith( elem.childNodes );
  }).end();
};
	
jQuery(function($) {
	if($('div#accordion').length)
	{
		var accordionObj = $('div#accordion').parent();
		accordionObj.css('width','460px').find('script').remove();
		$("div#rhs_accordion").html("");
		accordionObj.appendTo("div#rhs_accordion");
	}
	
	$('div#topContent').css({'min-height':'','height':''});
	$('div#topContent').prev("p").remove();
	$('div#topContent').unwrap();
	//$('div#topContent').siblings(":last").remove();
	$('div#topContent').parent().css({'width':'703px','margin':'0 13px 0 0','min-height':'','height':''});
	$('div#bottomContent').prev("p").remove();
	$('div#bottomContent').unwrap();
	//$('div#bottomContent').siblings(":last").remove();
	$('div#bottomContent').parent().css('width','703px');
	$('div#bottomContent').parent().attr('id','bottomContentParent');
});
