var $j = jQuery.noConflict();

$j(function(){
   $j('#footer ul li:last').css('background-image','none');
   $j('p.quote').before('<span class="leftquote"></span>').after('<span class="rightquote"></span>');
   $j(window).bind('load', function(){
		setheight();
        if($j('#fronttitle').is('h3')){
            $j('#fronttitle').show().next().addClass('frontsibling');
            $j('#fronttitle').parent().parent().parent().parent('table.contentpaneopen').prev().hide();
        }
   })
});

function setheight(){
	var hitemp = 450;
	var list = new Array();
	list[0] = $j('#menu').height();
	list[1] = $j('#content').height();
	list[2] = $j('#sidebar').height();
	for(var i=0; i<=list.length; i++) if(parseInt(list[i])>parseInt(hitemp)) hitemp = list[i];
	$j('#sidebar').height(hitemp);
}