$(document).ready(function(){
	$('#sidebar .box ul li:last-child').addClass('last-child').addClass('last-child');
	
	$('#contentWrapper div.full-box, div.tab-box div.project, div.recent-projects li').css('cursor', 'pointer').hover(function(){ 
		$(this).animate({backgroundColor: '#D9D5D1'}, 200);
	}, function(){
		$(this).animate({backgroundColor: '#F0EEED'}, 200);
	}).click(function(){
		document.location.href = $('a', $(this)).get(0).href;
	});
	
	$('#promo_box_conference, #promo_box_video').css('cursor', 'pointer').hover(function(){ 
		$(this).addClass('hover');
	}, function(){
		$(this).removeClass('hover');		
	}).click(function(){
		document.location.href = $('a', $(this)).get(0).href;
	});;
	
	$('div.actions li a').mousedown(function(){
		$(this).get(0).blur();
		$(this).parent().addClass('active');
	}).mouseup(function(){
		$(this).get(0).blur();
		$(this).parent().removeClass('active');
	})
	$('#contentWrapper div.full-box a, div.tab-box div.project a').css('text-decoration', 'none');
	
	$('#sidebar .box ul li:last-child, #sidebar .news ul li:last-child, #sidebar .testimonials ul li:last-child, #footer ul li:last-child').addClass('last-child');
	
});
