$(document).ready(
			function()
					{	
						//search field
						$('#id_searchfield').val("");
						$('#id_searchfield').removeAttr("disabled");
						
						//search button
						$('#id_searchbutton').removeAttr("disabled");
						$('#id_searchbutton').click(
										function()
												{
													search_prepare('');
												});
					});

// ..
// Prepare Search
// ..
function search_prepare(x,y)
{
	document.getElementById('id_results').innerHTML = '<img src="../media/interface_images/ajaxload.gif" width="16" height="16" alt="loading" /> Ju lutemi prisni...';
	if(!y)
		y=0;
	if(x)
		$('#id_searchfield').val(x);
	search_perform(x,y);
};
// ..
// Perform Search
// ..
function search_perform(y,offset)
{
		// Is the searchterm passed to the variable or shall the function get it from the textbox?
	var x = '';
	if(!y)
		x = $('#id_searchfield').val();
	else
		x = y;
	// Is the offset defined or shall we proceed with a default value of 0?
	if(!offset)
		o=0;
	else
		o=offset;
		
	//escape special characters like ampersand &
	x 		= encodeURIComponent(x);

	// Send request
	$.ajax	({
				url: 	'functions.php',
				type:	'GET',
				data:	'operation=returnvideoresults&qstring='+x,
			
				success: function(result)
							{
									document.getElementById('id_results').innerHTML = result;
							}
	   		});
};
