$(document).ready(function(){ 


$('#bg_screen, .logo').click(function () {
      $('#bg_screen, #text_holder_contact, #text_holder_news, #text_holder_profile').fadeOut(500);
    });


$('.profile_trigger').mouseenter(function () {
      $('#bg_screen').animate( { backgroundColor: '#461600' }, { queue:false, duration: 1000 } );
      $('#text_holder_profile').fadeIn(500);
      $('#text_holder_news, #text_holder_contact').fadeOut(100);
    });


$('.news_trigger').mouseenter(function () {
      $('#bg_screen').animate( { backgroundColor: '#0d251d' }, {  queue:false, duration: 1000 }  );
      $('#text_holder_news').fadeIn(500);
      $('#text_holder_profile, #text_holder_contact').fadeOut(100);
    });


$('.contact_trigger').mouseenter(function () {
      $('#bg_screen').animate( { backgroundColor: '#047869' }, {  queue:false, duration: 1000 }  );
      $('#text_holder_contact').fadeIn(500);
      $('#text_holder_profile, #text_holder_news').fadeOut(100);
    });


// closure
	});
