jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery("#nav-one li").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
	if (document.all) {
		jQuery("#nav-one li").hoverClass ("sfHover");
	}
	jQuery("#sidebarHolder").prepend("<div id='sidebarTop'></div>");
	jQuery("#sidebarHolder").append("<div id='sidebarBottom'>&nbsp;</div>")
	
	jQuery("#twitter-box").prev().prev().addClass("twitterHeading");
	jQuery("#twitter-box").prev().prev().children("a").wrap("<h2></h2>");

	
});

jQuery.fn.hoverClass = function(c) {
	return this.each(function(){
		jQuery(this).hover( 
			function() { jQuery(this).addClass(c); },
			function() { jQuery(this).removeClass(c);}
		);
	});
};	


