$(document).ready(function() {

	$(window).bind('resize',function(){
		docwidth = $(window).width();
		if(docwidth>980){
			$('#centered-title').css('left',(docwidth/2)-200+'px');
		} else {
			$('#centered-title').css('left',(980/2)-200+'px');
		}
		
	});
	
	$(window).resize();
	
	$('.project-content-work .work-title').hover(function(){
		$(this).children('a').toggleClass('title-selected');
		$(this).children('.item-count').toggle();
		$('.project-content-work img').toggleClass('project-hover');
	});
	
	$('.project-content-iv .iv-title').hover(function(){
		$(this).children('a').toggleClass('title-selected');
		$(this).children('.item-count').toggle();
		$('.project-content-iv img').toggleClass('project-hover');
	});
		
		
	$('.project-content-work img').hover(function(){
		$(this).parent().parent().parent().parent().find('.item-count').toggle();
		$(this).parent().parent().parent().parent().find('.work-title').children('a').toggleClass('title-selected');
	});

	$('.project-content-iv img').hover(function(){
		$(this).parent().parent().parent().parent().find('.item-count').toggle();
		$(this).parent().parent().parent().parent().find('.iv-title').children('a').toggleClass('title-selected');		
	});
	


	$('#horizontal-container').waitForImages(function() {
		last_offset = $('#last-div').offset();
		container_width = last_offset.left;
		$('#horizontal-container').css('width',container_width);
	});

	
});
