$(document).ready(function(){
	var childrenCount = $('#menu').children().length;
	$('#menu').children().css('width',970/childrenCount+'px');
	$('#menu a').children().css('width',970/childrenCount+'px');
	var colors = ['#ed5c4f','#f1a053','#f9e655','#c4e301','#24bce9','#ac5fa7'];
	$('#menu div.btn').each(function(i){
		$(this).css('border-bottom-color',colors[i]);
		$(this).mouseover(function(){
			$(this).animate({'height':'56px'},'fast','linear',function(){
				$(this).css('height','56px');				
			});			
		});
		$(this).mouseout(function(){
			$(this).animate({'height':'66px'},'fast','linear',function(){
				$(this).css('height','66px');
			});			
		});
	});
});
