var widthsizeold;

$(function() {
	$('#navigation a').each(function(){
		var $this = $(this);
		$this.stop().animate({
			'marginTop':'-70px'                       
		},{duration: 600, specialEasing: {marginTop: 'easeOutBounce', height: 'easeOutBounce'}});
	});
	$('#navigation > li.unselected').hover(
		function () {
			var $this = $(this);
			$('a',$this).stop().animate({
				'marginTop':'-30px'
			},{duration: 600, specialEasing: {marginTop: 'easeOutBounce', height: 'easeOutBounce'}});
		},
		function () {
			var $this = $(this);
			$('a',$this).stop().animate({
				'marginTop':'-70px'
			},{duration: 600, specialEasing: {marginTop: 'easeOutBounce', height: 'easeOutBounce'}});
		}
	);
	
});
