$(document).ready(function() {
	//css
	$(".one-person:last, .one-project li:last, #main-nav li:last").addClass("last-child");
	
	
	$("#footer .bonus").hover(function(){
		$(this).animate({ height: 206 }, 100);
		$(this).find("span").animate({ opacity: 1 });
	}, function(){
		$(this).find("span").animate({ opacity: 0 }, 100);
		$(this).animate({ height: 181 }, 100);
	});
	
});

// DD_belatedPNG fix for IE6 
/*@cc_on 
    if (@_jscript_version == 5.6 || (@_jscript_version == 5.7 && !window.XMLHttpRequest)) {
        // DD_belatedPNG.fix('.class-name, .another-class-name');
    }    
@*/
