jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery("ul.sf-menu").supersubs().superfish({
		animation: {opacity:"show",height:"show"},
		speed: "fast",
		autoArrows: false
	});

	jQuery("#SubFooter").css( "display", "none" );

	jQuery("#clickme").css( "text-decoration", "underline" ).css( "color", "#336699").css( "cursor", "pointer" ).css( "font-weight", "bold");
	jQuery("#clickme2").css( "text-decoration", "underline" ).css( "color", "#336699").css( "cursor", "pointer" ).css( "font-weight", "bold");
	jQuery("#clickme").click(function () {
		jQuery("#SubFooter").slideToggle("fast");
		jQuery("#SubBlocks").slideToggle("fast");
		jQuery("#MainFooter").slideToggle("fast");
	});
	jQuery("#clickme2").click(function () {
		jQuery("#SubFooter").slideToggle("fast");
		jQuery("#SubBlocks").slideToggle("fast");
		jQuery("#MainFooter").slideToggle("fast");
	});
});