$(document).ready(function() {
	$('.home_left_news').hide();
	$('.home_left_directions').show();
	$('.video_show').show();
	$('.who_video').hide();


	
$('#btn_1').click(function() {
	$('#quote_1').fadeIn(1000);
 	$('#quote_2').hide();
 	$('#quote_3').hide();
  });
  
$('#btn_2').click(function() {
	$('#quote_2').fadeIn(1000);
 	$('#quote_1').hide();
 	$('#quote_3').hide();
  });
	
$('#btn_3').click(function() {
	$('#quote_3').fadeIn(1000);
 	$('#quote_2').hide();
 	$('#quote_1').hide();
  });	

 

  
  
$(".movie_btn").click( function() {
  	var url=$(this).attr("flash"); 
  	$(".loader").load(url);
  	});
  	

$(".video_show").click( function() {
  	$('.who_video').show();
  	$('.video_show').hide();
  	var url=$(this).attr("flash"); 
  	$(".who_video").load(url);
  	});
  
});
