jQuery.noConflict();

function fixFloatImages()
{
	if(jQuery.browser.msie && jQuery.browser.version < 7)
	{
		jQuery("img[align='left']").addClass("alignleft");
		jQuery("img[align='right']").addClass("alignright");
	}
}


jQuery(document).ready(function() {
		jQuery("ul#HouseMenu").superfish({
									hoverClass	: "sfHover",
									pathClass	: "overideThisToUse",
									delay		: 800,
									animation	: {opacity:"show"},
									speed		: "normal",
									onShow		: function(){ /*your callback function here*/ }
								});
		fixFloatImages();
});