$(document).ready(function() {
	$('.searchform input[name=words]').focus(function() {
		if($(this).val() == $(this).attr('title'))
			$(this).val("");
	}).blur(function() {
		if($(this).val() == "")
			$(this).val($(this).attr('title'));
	});
	
	$('.simple_overlay').css('height', ''+($(document).height() - 300));
	var $trig = $('#agb_trigger').attr('href', '#').overlay({
		mask: {
			color: '#000',
			loadSpeed: 200,
			opacity: 0.9
		}
	});
});
