 
  var datetoday = new Date();
  var timenow = datetoday.getTime();
  datetoday.setTime(timenow);
  var thehour = datetoday.getHours();

  if (thehour >= 18)
    $('#welcome').text('Good Evening. Welcome to redSource.');
  else if (thehour >= 15)
    $('#welcome').text('Good Afternoon. Welcome to redSource.');
  else if (thehour >= 12)
    $('#welcome').text('Good Day. Welcome to redSource.');
  else if (thehour >= 7)
    $('#welcome').text('Good Morning. Welcome to redSource.');
  else if (thehour >= 0)
    $('#welcome').text('Yawn. Welcome to redSource.');
  else
   $('#welcome').text('Hey there. Welcome to redSource.');

   
   
$().ready(function() {
	$('#coda-slider-1').codaSlider();
	
	$('#coda-nav-1 a').tipsy({fade: true, gravity: 'w'});
	
	$('.js-blah').tipsy({fade: true, gravity: 's'});

	$('.info-box').hide();
	
	$('.foliolist li').click(function(){ 
		if (!$(this).children('.info-box').is(":visible")) 
		{	
			$(this).children('.info-box').slideDown('slow');
		}
		else if ($(this).children('.info-box').is(":visible"))
		{
			$(this).children('.info-box').slideUp('slow');
		}
	});
	
});	
	
$(document).ready(function($) {
	$(".tweet").tweet({
	  join_text: "auto",
	  username: "redsourceinfo",
	  avatar_size: 48,
	  count: 5,
	  auto_join_text_default: "we said,", 
	  auto_join_text_ed: "we",
	  auto_join_text_ing: "we were",
	  auto_join_text_reply: "we replied",
	  auto_join_text_url: "we were checking out",
	  loading_text: "loading tweets..."
	});
})      
	
Shadowbox.init();

