$(document).ready(function(){
	
	// Track outgoing URLs using Google Analytics
	$('div.entry a').click(function(event){
		pageTracker._trackPageview('/outgoing/' + $(this).attr('href'));
	});
	
	// Clear input fields on forms where they have pre-defined text (search, newsletter)
	$('#searchForm input[type=text], #newsLetterSignupForm input[type=text], #rssEmailForm input[type=text]').focus(function(){
		$(this).removeAttr('value');
	});
	
	$('#searchForm input[type=text]').blur(function(){
		$(this).attr('value', 'Search Blog');
	});
	
	$('#newsLetterSignupForm input[type=text]').blur(function(){
		$(this).attr('value', 'Enter email address');
	});
	
	$('#rssEmailForm input[type=text]').blur(function(){
		$(this).attr('value', 'Enter your email address here');
	})
});