$j(document).ready(function(){

	$j('.project').each(function(){
		var width = $j(this).find('.entry-title').outerWidth();
		var calc = '-'+width/2+'px';
		
		console.log(width, calc);
		
		$j(this).find('.entry-title').css('margin-left', calc);
		
	});
	
	$j('.project').hover(function(){
		$j(this).find('.entry-title').stop().fadeTo(300, 1);
	}, function(){
		$j(this).find('.entry-title').stop().fadeTo(300, 0);
		
	});
	
		boxes = $j('.project, .project-slot').length;
		length = 9-boxes;
		
	if (boxes != 0) {
		while (length > 0) {
			$j('.post-container').append('<div class="project-slot"></div>');
			
			$j('.project-slot').css({ opacity: 0.5 });
			
			length = length-1;	
		}	
	}	
});
