/**
 * @author kchevalier@suntouchdesign.com
 */

var tabSide = true;

function tabFix() {
	if ( tabSide ) {
		jQuery("#main table:first table:first").css({ borderRight: '1px solid #1a1a1a' });
		jQuery("#main table td.color tr td .item2").css({ borderBottom: '1px solid #fff' });
	}
}

jQuery(document).ready(function(){
	tabFix();
});