$(document).ready(function(){
	//*****Replace align attribute with class**************************************************//
	$('img[align="left"]').addClass('left').removeAttr('align');
	$('img[align="right"]').addClass('right').removeAttr('align');
	$('img[align="middle"]').addClass('middle').removeAttr('align');
	//**************************************************Replace target attribute with class**************************************************//
	$('a[target]').addClass('newwindow').removeAttr('target');
	//*****The following function make it possible to have web standard popups**************************************************//
	$('a.newwindow').click(function() {
		window.open($(this).attr('href'));
    return false;
	});
	//*****Add swfobject flash call**************************************************//
	if ($("#flashcontent").length > 0) {
	  var so = new SWFObject('swf/header-home-flash.swf', 'flash', '950', '233', '8', '#fff');
	  so.addParam('wmode', 'transparent');
	  so.write('flashcontent');
  }
	//*****Clear search text out search box on focus**************************************************//
	$('#txtSearch').focus(function() {
    if ($(this).val() == 'SEARCH') {
      $(this).val('');
	  }
  });
	//*****Extend the footer to the bottom of the page**************************************************//
  var footerHeight = $('#footer').height();
  var pageHeight = $(document.body).height();
  var windowHeight = $(document).height();
  var difference = windowHeight - pageHeight;
  $('#footer').height(footerHeight + difference)
	//*****Add starting number to second column list**************************************************//
  $('.right ol').attr('start','35');
});