/**
 * function adds a browser bookmark using the appropriate methods which is dependent on the browser
 */
function addBookmark() {
		 title = document.title; 
	 	 // MovableType - Replace with <$MTEntryTitle$>
			 	
		 url = window.location; 
	 	 // MovableType - Replace with <$MTEntryPermalink$>
						 	
		if (window.sidebar) { //Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
		} 
		else if( window.external ) { //IE Favorite
			window.external.AddFavorite( url, title); 
		}
		else if(window.opera && window.print) { //Opera Hotlist
			return true; 
		}
}

/**
 * function index a page used for the site search
 */
$(document).ready(function(){
	var script = '/gadgets/SiteSearchGadget/SearchIndex.php';
	var url = document.location;
	$("#search_index").load(script, {type:'ajax', url:url});
});
