$(document).ready(function(){
	$('.hero ul li:first-child').addClass('first-child');	
	$('.hero ul').cycle({
		fx: 'fade',
		pager: '#nav',
		after:   onAfter		
	});	
	function onAfter() {
		/*console.log($(this));*/
		if($(this).is('.first-child')){
			$('.top-line').animate({height:'46px'}, 1000);
			$('.bottom-line').animate({height:'92px'}, 1000);
		}else{
			$('.top-line').css({'height':'1px', 'bottom':'157px'});
			$('.bottom-line').css({'height':'1px', 'top':'108px'});
		}
	}	
	$('#nav a:last-child').addClass('last-child');	
});
