// jQuery

$(document).ready(function(){
	
	// Search Form

	$('#s').focus(function() {
		if(this.value == this.defaultValue) {
				this.value = "";
		}
		$(this).addClass('no_bg');
	}).blur(function() {
		if(!this.value.length) {
			$(this).removeClass('no_bg');
		}
	});

	// Open external links to new window

	$("a[href^='http:']").not("[href*='infantinoblog.com']").attr('target','_blank');
	
});

// Cufon

Cufon.replace('#posts .post_title', {
	hover: true
});
Cufon.replace('p.title_sidebar');
Cufon.replace('#bottom_links li');
Cufon.replace('#comments,#postcomment');
