$(document).ready(function() {

// --- Nav Buttons
	
	$(".comments").mouseover(function() {
	$(this).addClass('hover'); })
	.mouseout(function() {
	$(this).removeClass("over");
	});


	//---- This block makes the tabs behave properly
	
	$("li a.active").parent().css('background-position', "right -27px");   // -- Sets the top-level LI back to where it should be
	$("li a.active").css('background-position', "left -27px");  // -- Sets the top-level A back to where it should be	

	$('#block-nice_menus-1 .nice-menu li a').bind('mouseenter', function () {
        $(this).css('background-position', "left -27px").parent().css('background-position', "right -27px");
    }).bind('mouseleave', function () {
        $(this).css('background-position', "left 2px").parent().css('background-position', "right 2px");
				$("li a.active").parent().css('background-position', "right -27px");  // -- Sets the top-level LI back to where it should be
				$("li a.active").css('background-position', "left -27px");  // -- Sets the top-level A back to where it should be
	});
	
	
});


