// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
$(function() {
	$("input.refreshable").click( function() {
		$(this).val("");
	});
	
	$("h1#logo").click( function() {
		window.location.href = "http://www.bigappleed.com/"
	})
})