jQuery(function(){
	clearInputs();
	jQuery('div.posts-navigation').each(function(){
		if(jQuery(this).find('a').length == 0) jQuery(this).remove();
	});
	if(jQuery.browser.msie && jQuery.browser.version < 7){
		jQuery('#nav li').mouseenter(function(){
			jQuery(this).addClass('hover');
		}).mouseleave(function(){
			jQuery(this).removeClass('hover');
		});
	}
	jQuery('#nav > li:last').addClass('last');
});
/*---- clear inputs ---*/
function clearInputs(){
	jQuery('input:text, input:password, textarea').each(function(){
		var _el = jQuery(this);
		_el.data('val', _el.val());
		_el.bind('focus', function(){
			if(_el.val() == _el.data('val')) _el.val('');
		}).bind('blur', function(){
			if(_el.val() == '') _el.val(_el.data('val'));
		});
	});
}
