// JavaScript Document


$(document).ready(function() {

	$("#work_updates").show();
	$("#work_reel").hide();
	$("#work_equipment").hide();
	$("#work_musicvideos").hide();
	$("#work_commercials").hide();
	$("#work_photography").hide();
	
	$(".selector").hover(
	
	function() {
    
	$(this).css("opacity", .5);},
	
	function() {
	
	$(this).css("opacity", 1);
	
  	});
	
	$("#horizontal_line").animate({
		left: 0,
  	}, 2500 );

	$("#vertical_line").animate({
		top: 0,
  	}, 2100 );
	
	$("#text_director").delay(1200).animate({
		top: 35,
  	}, 1800 );

	$("#text_director_of_photography").delay(1200).animate({
		left: 65,
  	}, 1800 );
	$("#text_reel").delay(1200).animate({
		top: 36,
  	}, 2400 );
	$("#text_updates").delay(1200).animate({
		top: 69,
  	}, 2300 );
	$("#text_equipment").delay(1200).animate({
		left: 85,
  	}, 2700 );
	
	$("#workspace_div").delay(2200).fadeIn(4000);

	$("#text_seth").animate({ left:25 }, 2000 );
	
	$("#bottom_bar").delay(2300).animate({ left:5 }, 2000 );
	
	
	
	
	
	$('#text_reel').click(function() {
  		$("#work_reel").show();
		$("#img_reel").attr("src", "images/text_reel_on.png");
		
		$("#work_updates").hide();
		$("#img_updates").attr("src", "images/text_updates.png");
		
		$("#work_equipment").hide();
		$("#img_equipment").attr("src", "images/text_equipment.png");
		
		$("#work_musicvideos").hide();
		$("#img_music_videos").attr("src", "images/text_music_videos.png");
		
		$("#work_commercials").hide();
		$("#img_commercials").attr("src", "images/text_commercials.png");
		
		$("#work_photography").hide();
		$("#img_photography").attr("src", "images/text_photography.png");
	});
	
	$('#text_updates').click(function() {
  		$("#work_updates").show();
		$("#img_updates").attr("src", "images/text_updates_on.png");
		
		$("#work_reel").hide();
		$("#img_reel").attr("src", "images/text_reel.png");
		
		$("#work_equipment").hide();
		$("#img_equipment").attr("src", "images/text_equipment.png");
		
		$("#work_musicvideos").hide();
		$("#img_music_videos").attr("src", "images/text_music_videos.png");
		
		$("#work_commercials").hide();
		$("#img_commercials").attr("src", "images/text_commercials.png");
		
		$("#work_photography").hide();
		$("#img_photography").attr("src", "images/text_photography.png");
	});
	
	$('#text_equipment').click(function() {
  		$("#work_equipment").show();
		$("#img_equipment").attr("src", "images/text_equipment_on.png");
		
		$("#work_updates").hide();
		$("#img_updates").attr("src", "images/text_updates.png");
		
		$("#work_reel").hide();
		$("#img_reel").attr("src", "images/text_reel.png");
		
		$("#work_musicvideos").hide();
		$("#img_music_videos").attr("src", "images/text_music_videos.png");
		
		$("#work_commercials").hide();
		$("#img_commercials").attr("src", "images/text_commercials.png");
		
		$("#work_photography").hide();
		$("#img_photography").attr("src", "images/text_photography.png");
	});
	
	$('#text_music_videos').click(function() {
  		$("#work_musicvideos").show();
		$("#img_music_videos").attr("src", "images/text_music_videos_on.png");
		
		$("#work_updates").hide();
		$("#img_updates").attr("src", "images/text_updates.png");
		
		$("#work_equipment").hide();
		$("#img_equipment").attr("src", "images/text_equipment.png");
		
		$("#work_reel").hide();
		$("#img_reel").attr("src", "images/text_reel.png");
		
		$("#work_commercials").hide();
		$("#img_commercials").attr("src", "images/text_commercials.png");
		
		$("#work_photography").hide();
		$("#img_photography").attr("src", "images/text_photography.png");
	});
	
	$('#text_commercials').click(function() {
  		$("#work_commercials").show();
		$("#img_commercials").attr("src", "images/text_commercials_on.png");
		
		$("#work_updates").hide();
		$("#img_updates").attr("src", "images/text_updates.png");
		
		$("#work_equipment").hide();
		$("#img_equipment").attr("src", "images/text_equipment.png");
		
		$("#work_musicvideos").hide();
		$("#img_music_videos").attr("src", "images/text_music_videos.png");
		
		$("#work_reel").hide();
		$("#img_reel").attr("src", "images/text_reel.png");
		
		$("#work_photography").hide();
		$("#img_photography").attr("src", "images/text_photography.png");
	});
	
	$('#text_photography').click(function() {
  		$("#work_photography").show();
		$("#img_photography").attr("src", "images/text_photography_on.png");
		
		$("#work_updates").hide();
		$("#img_updates").attr("src", "images/text_updates.png");
		
		$("#work_equipment").hide();
		$("#img_equipment").attr("src", "images/text_equipment.png");
		
		$("#work_musicvideos").hide();
		$("#img_music_videos").attr("src", "images/text_music_videos.png");
		
		$("#work_commercials").hide();
		$("#img_commercials").attr("src", "images/text_commercials.png");
		
		$("#work_reel").hide();
		$("#img_reel").attr("src", "images/text_reel.png");
	});

	
	
 });

