//BEGIN  Global functions

$('body').removeClass('noscript');

$('html').removeAttr('class');

$(document).ready(function(){startclock(); startdate(); })

//#category-articles, #other_section_articles

$('#category-articles ul li ul li, #other_section_articles ul li ul li, .more').prepend('&raquo; ');

var searchField = 'search...';

$('#search_field').val(searchField)
                  .focus( function() {if ( $(this).val() == searchField ) $(this).val('');} )
				  .blur( function() {if ( $(this).val() == '' ) $(this).val(searchField);} );

$('#your-thoughts div.thought:odd, #your-thoughts span.top:odd, #your-thoughts span.bottom:odd').addClass('alt');

$(function(){

$('.clip p a img').each(function(){

$(this).css({'width':'auto','height':'auto'});

if ( $(this).width() > $(this).height() ) { $(this).addClass('height') } else { $(this).addClass('width') }

if ( $(this).width() < $(this).parent().width() ) { $(this).removeClass('height').addClass('width') }



});

});
