$(document).ready(function()
{
	// -------------------- Auto clear certain text fields --------------------
	var theInputs = $("#enews_form input[@type=text], #search input[@type=text]");

	theInputs.click(function()
	{
		if ($(this).val() == $(this).attr("title")) $(this).val('');
	});
	theInputs.blur(function()
	{
		if (!$(this).val()) $(this).val($(this).attr("title"));
	});
	
	// -------------------- Bookmarks panel --------------------

	$("a#searchLink").click(function() {
            $("#searchform").toggle(400);
            return false;
          });
	
	$("a#bookmark_link").click(function() {
		//var url = 'http://choice.ichameleon.com';
		var url = location.href;
		var title = document.title;
		//var title = 'CSIP: Choice Medicines';
		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
			return false;
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( url, title); 
			return false;
		} else if(window.opera && window.print) { // Opera Hotlist
			return true; 
		}
	});
	
});




