jQuery.noConflict();
(function($){

$(document).ready(function(){

	$('#footer .sitemap').each(function(){
		var ul = $('> ul', this), s = $(this), h = ul.outerHeight();
		ul.hide();
		$('p.title a', this).click(function(){
			if (ul.is(':visible'))
				ul.slideUp(400);
			else
				ul.slideDown(500);
			return false;
		});
	});

	if ($.browser.msie) {
		try {document.execCommand("BackgroundImageCache", false, true);} catch(err){};
		if (typeof(DD_belatedPNG) != 'undefined')
		{
			DD_belatedPNG.fix('img, #menu li li, #side1 .bar, #footer .links');

			$('#side1 .bar').height($('#wrap').height() + 'px');
		}
	}

});

})(jQuery);
