// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// when you focus on the search box in the home page, clear the inner text
$(document).ready(function(){
	
	$(".search-box-home").focus(function(){
		$(this).val("");
	});
	
});