jQuery.noConflict();

jQuery(function($) {

    //Empty On Focus
	$('#search').emptyOnFocus();
	
	//Nav
	$('#nav li:last-child').addClass('last-child');
	
	//front boxes hover
	if (document.getElementById('home')){
		$(".boxes .box").hover(
			function () { $(this).addClass("hovered"); }, 
			function () { $(this).removeClass("hovered"); }
		);
		
		$('#home-column .item:last').addClass('last');
	}
	
});
