jQuery.noConflict();

function adjustMinHeight()
{
	if(jQuery("div.inner").length > 0)
	{
		wrapperH = jQuery("#content_wrapper").height();
		wrapperH = wrapperH - 133;
		jQuery("#content_wrapper").height(wrapperH+"px");
	}
	
	leftH = jQuery("#leftbar").height();
	rightH = jQuery("#rightbar").height();
	contentH = jQuery("#content_wrapper").height();
	bigH = leftH;
	if(rightH > bigH){ bigH = rightH }
	if(bigH > contentH){
		jQuery("#content_wrapper").height(bigH+"px");
	}
}

function pxToInt(px)
{
	return Number(px.substr(0,(px.length - 2)));
}


jQuery(document).ready(function() {
	jQuery("ul#HouseMenu").superfish();
	
	//adjustMinHeight();
});
