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

function addBookmark() {
	if( document.all ) { //MSIE... I hope!
		window.external.AddFavorite(location.href, document.title);
	} else {
		alert("Sorry, your browser doesn't support this. Try pressing Ctrl+D or use menu bar.");
	}
}
