$(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 --------------------

	$("#bookmark_this_page ul").prepend('<li><a class="star" href="#" id="add_to_favs">Add to browser favourites</a></li>');
	$("#add_to_favs").click(function()
	{
		try
		{
			window.external.AddFavorite(location.href, document.title);
		}
		catch(e)
		{
			// alert(e);
			alert("Sorry, your browser doesn't support this feature. Please press CTRL+D instead");
		}
	});
});

$(window).load(function()
{
	// -------------------- Keep large images within the design --------------------
	
	$("#primarycontent img").each(function()
	{	
		if ($(this).width() > 300)
		{		
			$(this).width("100%");
			$(this).height("auto");
		}
	});
});

