/**
 * Osiname 29/04/10 @ 13:10
 * Deleting this file (or the contents therein) will cause homepage to fail XHTML 1.0 Strict Validation
 * The code below was formerly in blocks -> Login / account / logout block
 * It wraps span tags around the <a> tags for the login/logout buttons on home page
 * Using drupal_add_js($js, 'inline'); caused the document to fail validation
 * The block now calls the js from this file
 */

$(document).ready(function() {
  $('#login-block a').wrapInner('<span><span></span></span>');
});
