// after loading
$(document).ready(function(){

//  $("#homepage .boxes").hover(
//    function() {
//      $(this).fadeTo('fast', 0.5);
//    },
//    function(){
//      $(this).fadeTo('fast', 1); 
//    }
//  );

//  $("#homepage .box").hover(
//    function(){
//      $(this).fadeTo('fast', 1); 
//    },
//    function(){
//      $(this).fadeTo('fast', 0.5); 
//    }
//  );
  
  
  
});

$(function() {
  $("#homepage .box").bind('mouseenter',function(){
    $(this).fadeTo('fast', 1);
    $("#homepage .box").not(this).fadeTo('fast', 0.5);
  });
  
  $("#homepage .boxes").bind('mouseleave',function(){
    $("#homepage .box").fadeTo('fast', 1);
  });
});

//$(function() {
//  $("#homepage .box").hover(
//    function() {
//      $("#homepage .box").not(this).stop(false);
//      $(this).siblings().fadeTo('fast', 0.5);
//    },
//    function() {
//      $(this).siblings().fadeTo('fast', 1);
//    }
//  );
//});

//$(function() {
//    $('#homepage .boxes').bind('mouseover',function() {
//      $(this).fadeTo('fast', 0.5);
//    }).bind('mouseout',function(){
//      $(this).fadeTo('fast', 1);
//    });
//});


