function onTipFocus()
{
	$this = $(this);
	if($this.attr('title') == $this.val())
	{
		$this.val('');
		$this.removeClass('tip');
	}
}

$(document).ready(function(){
	$('form input.tip').each(function() {
		$this = $(this);
		if($this.val() == '' && $this.val() != $this.attr('title'))
		{
			$this.val($this.attr('title'));
			$this.focus(onTipFocus);
		}
	});

	if($('#banners-vert').children().length)
	{
		if(screen.width <= 1024)
			$('#banners-vert').hide();
	}
});

