jQuery(function($) { 
	$('.blink')
		.focus(function(){
			if( $(this).val() == $(this).attr('title') ) {
				$(this).val('');
			}
		}).blur(function(){
			if( $(this).val() == '' ) {
				$(this).val( $(this).attr('title') );
			}
		});
		
		$('#main-nav ul li').hover(
			function(){
				var li_width = $(this).width();
				var dd_width = $(this).find('ul').width();
				var dd_position = ( li_width - dd_width )/2 ;
				$(this).find('ul').css('left', dd_position).show();
			}, 
			function(){
				$(this).find('ul').hide();
			}
		);
		
		$('.widget_recent_entries').addClass('posts');
		$('.widget_pages').addClass('buttons').find('a').wrapInner('<span></span>');
		$('.widget_nav_menu').addClass('buttons').find('a').wrapInner('<span></span>');
		
		var year=(new Date).getFullYear();
		while (year > 2000) {
			$('.widget_archive li:contains("' + year +'")').last().css('margin-bottom', '0px');
			year--;
		}
	
		if ( $(window).height() > $('body').height() ) {
			$('#content').height($(window).height()-$('#header').height()-48);
		}
		
		if ($('.article').length==1) { 
			$('.article').css('border-bottom', 0);
		}
}); 
