
/**
 *
 */
function goTo(url)
{
	document.location.href = url;
}

/**
 *
 */
function setFocus(id)
{	
	document.getElementById(id).focus();
}

/*==========================*/
/*	document ready			*/
/*==========================*/
$(document).ready(function()
{
	/* --- */
	$('form#zoeken a.left').click(function(e)
	{
		e.preventDefault();
	
		$('form#zoeken').submit();
	});
	
	/* --- */
	$('form#zoeken input').focus(function()
	{
		if($(this).val() == "Zoekterm..." || $(this).val() == "Search for...")
			$(this).val("").css({color: "#000000", fontStyle: "normal"});
	});
	
	/* --- */
	$('form#zoeken input').blur(function()
	{
		if($(this).val() == "")
			$(this).val((LANGUAGE_ID == 1 ? "Zoekterm..." : "Search for...")).css({color: "#BBBBBB", fontStyle: "italic"});
	});
});
