jQuery(document).ready(function() {

if (jQuery.browser.msie && jQuery.browser.version.substr(0,1)<7) {

	//Fix tabber bg in IE6
 
	jQuery('#tabber').css('border', '1px solid red');
	jQuery('#tabber').css('border', 'none');
 
}

// Remove borders, etc

jQuery('#social ul li:first-child').css('border-top','none');
jQuery('#social ul li:last-child').css('border-bottom','none');
jQuery('#tabber ul.list li:last-child a').css('border-bottom','none');
jQuery('.widget li:last-child a').css('border-bottom','none');
jQuery('.widget li:last-child').css('border-bottom','none');
	
});