$(document).ready(function()
{
  $("#q").click(function()
  {
    if ($(this).val() == 'Zoek naar entertainment aanbieders')
    {
      $(this).val('');
    }
  });
  
  $.jTwitter('entertainmentbv', 20, function(posts)
  {
    for(var i = 2 ; i >=0; i--)
    {
      $('.twitter-blok').find('ul').prepend('<li><p><a target="_blank" href="http://twitter.com/#!/' + posts[i].user.screen_name + '">' + posts[i].user.screen_name + '</a> ' + posts[i].text + '</p></li>');
    }
  });
  
});

