// JavaScript Document
// JavaScript Document
$(function(){
	  $("#social a").hover(
      function () {
        $(this).animate({ 'opacity': 1}, 400);
      }, 
      function () {
        $(this).animate({ 'opacity': 0.5}, 400);
      }
    );
	 $("#social a").animate({ 'opacity': 0.5}, 400);
	 
	$("a.shows").hover(
      function () {
        $(this).animate({ 'opacity': 1}, 400);
      }, 
      function () {
        $(this).animate({ 'opacity': 0.5}, 400);
      }
    );
	 $("a.shows").animate({ 'opacity': 0.5}, 400);
});


