jQuery(document).ready(function() {

// Drop downs

jQuery('#pagenav > li ul').mouseover(function(){
	jQuery(this).parent().addClass('current_page_item');
});
jQuery('#pagenav > li ul').mouseleave(function(){
	jQuery(this).parent().removeClass('current_page_item');
});


// Remove borders, etc

jQuery("#nav ul li:last").css("background","none");
jQuery("#featured-tabs li:first").css("border-top","0");
jQuery("#featured-tabs li:last").css("border-bottom","0");
jQuery("#news ul li:last").css("border-bottom","0");
jQuery("#comments_wrap ol li ul.children li").css("border-bottom","0");
jQuery(".widget ul li:last-child").each(function(){
	jQuery(this).css("border-bottom","0");
});

});