﻿$(document).ready(MakeLayoutChanges);

function MakeLayoutChanges() {

  //ChangeTagsDisplay();
  AppendToNavbar();
  AppendTwitters();
  DoSyntaxHighlighting();

  $('a[@rel*=lightbox]').lightBox({
      imageLoading:'http://mikeo.co.uk/MSDN_Blogs/OtherStuff/jQueryLightBox/images/lightbox-ico-loading.gif',
      imageBtnPrev:'http://mikeo.co.uk/MSDN_Blogs/OtherStuff/jQueryLightBox/images/lightbox-btn-prev.gif',
      imageBtnNext:'http://mikeo.co.uk/MSDN_Blogs/OtherStuff/jQueryLightBox/images/lightbox-btn-next.gif',
      imageBtnClose:'http://mikeo.co.uk/MSDN_Blogs/OtherStuff/jQueryLightBox/images/lightbox-btn-close.gif',
      imageBlank:'http://mikeo.co.uk/MSDN_Blogs/OtherStuff/jQueryLightBox/images/lightbox-blank.gif'
    }); // Select all links that contains lightbox in the attribute rel
}

function ChangeTagsDisplay() {

  $('#TagSideBar').css('display', 'none');
  $('#NewsSidebar h3:first').text('Tags');
};

function AppendToNavbar() {

  var nb = $('#navbar ul:first');

  if (nb) {
    nb.append('<li style="padding-top:4px;"><img style=\'height:24px;vertical-align:middle\' src=\'http://mikeo.co.uk/MSDN_Blogs/Images/Twitter.png\' alt=\'Twitter Icon\'>&nbsp<a href=\'http://www.twitter.com/MikeOrmond\'>Follow Me on Twitter</a></li>');
  }

 // Temporary just to create a link for Remix
//      nb = $('masthead');
//      if (nb) {
//        nb.insert('<a href="http://www.microsoft.com/uk/remix08"><div style="position:relative;left:250px;top:-60px;width:600px;height:200px;"></div></a>');
//      }
}

function AppendTwitters() {

  $('#RecentPostsSideBar').after('<div id=\'TwittersSideBar\'></div>' );
  $('#TwittersSideBar').append('<h3>Recent Tweets</h3>');
  $('#TwittersSideBar').append('<div id=\'twitters\'><img src=\'http://mikeo.co.uk/MSDN_Blogs/OtherStuff/9-0.gif\' /></div>');

  getTwitters(
  'twitters',
  { id: 'MikeOrmond',
    count: 3,
    enableLinks: true,
    ignoreReplies: true,
    clearContents: true,
    template: '<a href="http://twitter.com/%user_screen_name%"><q>%text%</q></a> <br />[%time%]'
  });
}

