$(document).ready(function()
{
var clicked = false;

$('#fblike').css({
'width' : '600px',
'height' : '24px',
'background-color' : '#3b5998',
'color' : '#fff',
'font-family' : 'Arial, Helvetica, sans-serif',
'padding' : '25px',
'margin' : 'auto',
'text-align' : 'center',
'font-size' : '24px'
});

$('#fblike').html('Klicke hier um Facebookfunktionen zu nutzen');

if(!clicked){

$('#fblike').click(function() {

clicked = true;

$('#fblike').css({
'width' : 'auto',
'height' : 'auto',
'border' : 'none',
'padding' : '0',
'background' : 'none',
'text-align' : 'center'

});
$('#fblike').load('fbajax.html');
});
}
});
