$(function() {
    $('#jquery-ajax-frontpage-services').find('a').bind('click', function(ev) {
        var url = $(this).attr('href');
        
        $.ajax({
            url: url,
            method: 'get',
            data: '',
            dataType:'html',
            success: function(response) {
               $('.splash').find('h2').html($(response).filter('h2').html());
               $('.splash').find('p').html($(response).filter('p').html());
            }
        }); 
        
        return false;
    });
        
});