function menu(i) {
	$('#header ul li').each(function(index) {
		if (index == i) { $(this).addClass('selected') } else { $(this).removeClass('selected') };
	});
	$('div.line').animate({left: (i*139)-23}, 500)
}
	
function studios(i) {
	$('#photos li a').each(function(index) {
		$(this).unbind();
		$(this).removeClass('selected');
		if (index === i) { 
			$(this).find('img').fadeOut('slow');
			$(this).click(function () {return false;});
		} else if ((i === null && index == 0)) { 
			$(this).find('img').hide();
			$(this).click(function () {return false;});
		} else {
			if (i !== null) $(this).find('img').fadeIn('slow');
			$(this).click(function () {
				studios(index);
				$(this).addClass('selected');
				$('.big_pic').fadeTo('fast', 0.01, function() {
					$('.big_pic').html('<img src="'+$('#photos li a.selected').attr('rel')+'" alt="'+$('#photos li a.selected').attr('title')+'" /><div>'+$('#photos li a.selected').attr('title')+'</div>');
					$('.big_pic').fadeTo('fast', 1);
				});
				return false;
			});
		}
	});
}

