$(document).ready(function(){  
      
  $("a.side").mouseover(function(){$("a.side").attr('style','background: url(/public/images/left.png) no-repeat scroll 0 -34px');});  
  $("a.side").mouseout(function(){$("a.side").attr('style','background: url(/public/images/left.png) no-repeat scroll 0 0');});  
  
  $("a.row:first").mouseover(function(){
  	$("a.row:first").attr('style','background: url(/public/images/right.png) no-repeat scroll 0 -34px');
  });   
  $("a.row:first").mouseout(function(){  
  	$("a.row:first").attr('style','background: url(/public/images/right.png) no-repeat scroll 0 0');
  });
  
  $("a.row:eq(1)").mouseover(function(){  
  	$("a.row:eq(1)").attr('style','background: url(/public/images/right.png) no-repeat scroll 0 -34px');
  });   
  $("a.row:eq(1)").mouseout(function(){  
  	$("a.row:eq(1)").attr('style','background: url(/public/images/right.png) no-repeat scroll 0 0');
  });  
  
  $("a.row:last").mouseover(function(){  
  	$("a.row:last").attr('style','background: url(/public/images/right.png) no-repeat scroll 0 -34px');
  });   
  $("a.row:last").mouseout(function(){  
  	$("a.row:last").attr('style','background: url(/public/images/right.png) no-repeat scroll 0 0');
  });
  
  $("#st").mouseover(function(){$("#st").animate({opacity: 0.6}, 500 );});
  $("#st").mouseout(function(){$("#st").animate({opacity: 1.0}, 500 );});
    
  $("#nd").mouseover(function(){ $("#nd").animate({opacity: 0.6}, 500 );});
  $("#nd").mouseout(function(){$("#nd").animate({opacity: 1.0}, 500 ); });
    
  $("#rd").mouseover(function(){$("#rd").animate({opacity: 0.6}, 500 );});
  $("#rd").mouseout(function(){$("#rd").animate({opacity: 1.0}, 500 );});  
  
  $('#pres a').lightBox();    
});
