$(document).ready(function(){
  var loader = '<img src="img/loading.gif" />';
  //$.ajaxTimeout( 60000 );
  $('#socialform').submit(
    function() {
  	  $('#message').html('');
  	  $('a', 'div.social').css('text-decoration', 'none');
  	  if($('#query').val().length > 5) {
  	    $('div.social').each(
  	      function() {
  	        $('span.score', this).html(loader);
  	        $.getJSON('pages/score/'+$(this).attr('id')+'/'+encodeURI($('#query').attr('value').replace(/https?:\/\//, ''))+".json", null, 
  	                            function(json) {
  	                              if(!json.domain) {
  	                                $('span.score', 'div#'+json.component).html('invalid domain');
  	                              } else {
  	                                $('span.score', 'div#'+json.component).html(''+json.score);
  	                                //$('a', 'div#'+json.component).attr('href', json.info.url);
  	                                $('a', 'div#'+json.component).attr('target', "_blank");
  	                                $('a', 'div#'+json.component).css('text-decoration', 'underline');
  	                              }
  	                            });
  	      }
  	    );
  	  }
  	  else {
  	    $('#message').html('Invalid domain name.');
  	  }
  	  return false;
    }
  );
});
