jQuery(document).ready(function($) {
	var h2Text = '';

	// avoid widows in titles (typography)
	$('h2.entry-title a').each(function() {
		h2Text  = $(this).text().replace(/ (\w+)$/,'&nbsp;$1');
		$(this).html(h2Text);
	});
	
	// capture click on logo
	$("#valentino-aluigi").click(function(){
		document.location.href = ($("body").is(".lang-en") ? "/en/" : "/");
	}).css('cursor','pointer');

	// set focus on search bar
	var $searchBox = $("#s");
	if($searchBox.length){
		$searchBox.focus();
	}

});
