$(function(){
	
	if($('.director').length) {
	  $('.director').not('.active-director').each ( function(){
	    var numRand = Math.floor(Math.random()*3)
	    $(this).find('a').addClass("random-" + numRand);
	
			$(this).hover(function() {
				$(this).find('.highlight').addClass('highlight-hover');
			}, function () {
				$(this).find('.highlight').removeClass('highlight-hover');
			})
		});
	}
	$(window).load(function(){
		$('div.image-fl').each(function(){
			imgWidth = $(this).children('img').width();
			imgWidth += 4;
			$(this).css('width', imgWidth);
		});
		$('div.image-fr').each(function(){
			imgWidth = $(this).children('img').width();
			imgWidth += 4;
			$(this).css('width', imgWidth);				
		});
		
		$('div.photocase').each(function(){
			imgWidth = $(this).children('img').width();
			imgWidth2 =  $(this).children('a').children('img').width();
			var pWidth = Math.max(imgWidth, imgWidth2);
			pWidth += 4;
			$(this).css('width', pWidth);				
		});	
	});
});   
Cufon.replace('div#cufon');
