$(document).ready(function(){
  	
  	$("#section-slv .col").mouseover(function(){
  	    $(this).addClass("over");
  	});
  	$("#section-slv .col").mouseout(function(){
  	    $(this).removeClass("over");
  	});
  	
  	$("#btns-slv a").mouseover(function(){
  	    var target = $(this).attr("href");
  	    $(target).addClass("over");
  	});
  	$("#btns-slv a").mouseout(function(){
  	    var target = $(this).attr("href");
  	    $(target).removeClass("over");
  	});
  	
});
