$(document).ready(function(){
    $("#servicesBar div.serviceBlock").hover(function(){
        if(IE){
            this.style.cursor = "pointer";
            }
        $(this).find("div").stop(false, false).animate({ bottom : "0px" });
    }, function(){
        $(this).find("div").stop(false, false).animate({ bottom : "-136px" });
    }).click(function(){
    });
    $("#servicesBar div.serviceBlockLast").hover(function(){

        $(this).find("div").stop(false, false).animate({ bottom : "0px" });
    }, function(){
        $(this).find("div").stop(false, false).animate({ bottom : "-136px" });
    }).click(function(){
    });
});



