// JavaScript Document



      $(document).ready(function(){
								 
		$('#full_container').hide();
	  
		$('.module').hide();

		$('#full_container').fadeIn('9000');

		$('.module').ready(function(){
 
		$('.module').fadeIn('19000');
		});

		$('#btnHome').addClass('current_item');



		$('a#btnHome').click(function(){
			$('.large_content').hide('100', function(){ 
			$('.module').show('100') });
			});

		$('a#btnVideo').click(function(){
			$('.large_content').hide('100', function(){ 
			$('.module').not(".video_c").hide('100', function() {
			$('.video_c').show('100');
								  });
								  });
			});
					 

		$('a#btnWeb').click(function(){
			$('.large_content').hide('100', function(){ 
			$('.module').not(".web_c").hide('100', function() {
			$('.web_c').show('100');
								  });
								  });
			});

		$('a#btnBranding').click(function(){
			$('.large_content').hide('100', function(){ 
			$('.module').not(".branding_c").hide('100', function() {
			$('.branding_c').show('100');
								  });
								  });
			});

		$('a#btnConcept').click(function(){
			$('.large_content').hide('100', function(){ 
			$('.module').not(".concept_c").hide('100', function() {
			$('.concept_c').show('100');
								  });
								  });
			});

		$('a#btnOther').click(function(){
			$('.large_content').hide('100', function(){ 
			$('.module').not(".other_c").hide('100', function() {
			$('.other_c').show('100');
								  });
								  });
			});


		$('.large_content a').click(function(){
			$(this).parent().parent().toggle('100', function() {
			$(this).prev(".module").toggle('100');
								  });
			});


		$('.module').click(function(){
			$(this).toggle('100', function() {
			$(this).next(".large_content").toggle('100');
								  });
			});

});

