// Image Fades

$(document).ready(function(){
   $("#pixarlogo").fadeTo(0, 0.5);
   $("#pixarlogo").hover(
	  function ()	 {
	  	 $(this).stop().fadeTo(380, 1);
    			  }, 
      function () {
        $(this).stop().fadeTo(380, 0.5);
     			  }
   				     );
   
   //XHTML
    $("#xhtmllogo").fadeTo(0, 0.5);
   $("#xhtmllogo").hover(
	  function ()	 {
	  	 $(this).stop().fadeTo(380, 1);
    			  }, 
      function () {
        $(this).stop().fadeTo(380, 0.5);
     			  }
   				     );
   
   
   //CSS
    $("#csslogo").fadeTo(0, 0.5);
   $("#csslogo").hover(
	  function ()	 {
	  	 $(this).stop().fadeTo(380, 1);
    			  }, 
      function () {
        $(this).stop().fadeTo(380, 0.5);
     			  }
   				     );
  });