$(document).ready(function() {
/* Mouse Effects on Menu */   
   $(".link img").mouseover(function() {
     $(this).animate({ 
        width: "100%",
        opacity: 0.7,
        borderWidth: "0px"
      }, 500 );
   });

   $(".link img").mouseout(function() {
     $(this).animate({ 
        width: "100%",
        opacity: 1,
        borderWidth: "0px"
      }, 300 );
   });
   
   
/* Same height columns */
var highestCol = Math.max($('#left').height(),$('#right').height());
$('#left').height(highestCol);


 });

