// JavaScript Document

$(document).ready(function(){

  
  /*$('.boxes').css({borderTopColor:'#fff',borderRightColor:'#fff',borderBottomColor:'#fff',borderLeftColor:'#fff'},'fast');*/

  $('.boxes').hover(
    function(){
      $(this).stop().animate({borderTopColor:'#e57657',borderRightColor:'#e57657',borderBottomColor:'#e57657',borderLeftColor:'#e57657'},'500');
$(this).children('.more').stop().animate({height:'25px', opacity:'100',display:'block',color:'#fff'},'500');
      $(this).children('h1').children('a').stop().animate({color:'#e57657'});
      /*$(this).animate({shadow: '0 0 50px #ffcc4a'});
      $(this).children('.more').toggle({display:'block'});*/
        },
    function(){
      $(this).stop().animate({borderTopColor:'#fff',borderRightColor:'#fff',borderBottomColor:'#fff',borderLeftColor:'#fff'},'500');
      $(this).children('.more').stop().animate({height:'0px',opacity:'0'},'500');
      $(this).children('h1').children('a').stop().animate({color:'#022954'});
      /*$(this).animate({shadow: '0 0 50px #fff'});
      $(this).children('.more').toggle({display:'none'});*/
        }
      );

})
