$(document).ready(function(){
   
    $("td.expertise_cell").mouseover(function () {
      $(this).css({'background-color':'#e0e0e0'});
    });
	
	$("td.expertise_cell").mouseout(function () {
      $(this).css({'background-color':'#ededed'});
    });
   
    $(".featured_banner").mouseover(function () {
      $(this).css({'background-color':'black'});
    });
	
	
	
	$(".featured_banner").mouseout(function () {
      $(this).css({'background-color':'#353535'});
    });
	
	
	$("#banner1").click(function () {
      window.location = "people.html";
    });
	
	$("#banner2").click(function () {
      window.location = "company_profile.html";
    });
	
	$("#banner3").click(function () {
      window.location = "our_values.html";
    });
	
	$("#exp1").click(function () {
      window.location = "areas_of_activities.html";
    });	
	
	$("#exp2").click(function () {
      window.location = "business_intelligence_tools.html";
    });	
	
	$("#exp3").click(function () {
      window.location = "it_solutions.html";
    });	
	
	$("#exp4").click(function () {
      window.location = "consulting_and_training.html";
    });	
});
