$(document).ready(function()
{
	var query = $("#search .query");
	
	query.focus(function ()
	{
		if (this.value == 'Sök BBI.se...')
		{
			this.value = '';
		}
	});
	
	query.blur(function ()
	{
		if (this.value == '')
		{
			this.value = 'Sök BBI.se...';
		}
	});
});
