$(function(){
    $("#showcase-detailed div").css({display:"none"});
    $("#showcase-intro-details").css({display:"block"});
    $("#enterprise-integration").hover(function(){
        $("#showcase-detailed div").hide()
        $("#enterprise-integration-details").show()});
    $("#mashups").hover(function(){
        $("#showcase-detailed div").hide()
        $("#mashups-details").show()});
    $("#identity-management").hover(function(){
        $("#showcase-detailed div").hide()
        $("#identity-management-details").show()});
    $("#saas").hover(function(){
        $("#showcase-detailed div").hide()
        $("#saas-details").show()});
     $("#compliance").hover(function(){
        $("#showcase-detailed div").hide()
        $("#compliance-details").show()});
      $("#mobile").hover(function(){
        $("#showcase-detailed div").hide()
        $("#mobile-details").show()});
});