	
//<![CDATA[
	$(function() {
		initWindow();

		// Vista input controls
		$('input.vista').each(function() {
			if($(this).hasClass('empty'))
			{
				$(this).attr('value', $(this).attr('title'));
			}
		});
		$('input.vista').focus(function() {
			if($(this).hasClass('empty'))
			{
				$(this).removeClass('empty').attr('value', '');
			}
		});
		$('input.vista').blur(function() {
			if($(this).hasClass('empty'))
			{
				$(this).attr('value', $(this).attr('title'));
			}
		});
		$('input.vista').change(function() {
			if($(this).attr('value') == '')
			{
				$(this).addClass('empty').attr('value', $(this).attr('title'));
			} else {
				$(this).removeClass('empty');
			}
		});
		$('input.vista').blur(function() {
			if($(this).attr('value') == '')
			{
				$(this).addClass('empty').attr('value', $(this).attr('title'));
			}
		});

		$(window).resize(function() {
			initWindow();			
		});
	});
	function initWindow()
	{
		// evenHeight
		$('div.homecol div.body').evenHeight();
		$('div.evenWrap').evenHeight();
		$('div.album').evenHeight();

		// Steiermark
		var refPos = $('#logo').position();
		$('#steiermark').css({ 'left' : (parseInt(refPos.left, 10) + 620) + 'px', 'top' : '30px' });
	}
	//]]>