// JavaScript Document
$(function(){
	$('input[type=text]').each(function(){
		var title = $(this).attr('title');
		$(this)
			.focus(function(){ if($(this).val() == title) $(this).val(''); })
			.blur(function(){ if($(this).val() == '') $(this).val(title); });
	});
	
	$('#nav a.nav-item-link, #header div a').each(function(){
		$(this).css({'width': ($(this).width() + 10) });
	});
/*	$('#categories a').each(function(){
		$(this).css({'width': ($(this).width() + 2) });
	});
*/
});
