// JavaScript Document

$(document).ready(function() {
	for(i=0;i<$('.tButtons li').length;i++) {
		var color="";
		color = $('.tButtons li').eq(i).attr('rel');
		$('.tButtons li').eq(i).css({'background-color':color, 'border-color':color});
	}
	$.each($('.tButtons'), function(i){
		var color="";
		color = $(this).find('li').first().attr('rel');
		$(this).find('li').first().children('a').css({'color':color});
		$(this).find('li').first().css({'background-color':'#fff', 'border':'1px solid ' + color , 'border-bottom':'0'});
		$('.tContent').eq(i).css({'border-color':color});
		$(this).find('li:not(:first)').hover(function() {
			var color="";
			color = $(this).attr('rel');
			$(this).css({'background-color':'#fff'});
			$(this).children('a').css({'color':color});
	  	}, 
		function (){
			var color="";
			color = $(this).attr('rel');
			$(this).css({'background-color': color});
			$(this).children('a').css({'color':'#fff'});
		});
	});
});
