/* ideenpark */
var box = new Array();
box[0] = 'text1';
box[1] = 'text2';
box[2] = 'text3';
function show(id)
{
	if(document.getElementById(id).style.display=="none")
	{
		for(i=0;i<box.length;i++)
		{
			document.getElementById(box[i]).style.display="none";
		}
		document.getElementById(id).style.display="block";
	}

}

/* pressecenter */

function clf(ele) // clearLoginForm
	{
		$('#loginForm input:not([type=submit])').each(function(i)
			{
				if ($(this).val() == 'E-Mail-Adresse' || $(this).val() == 'Kennwort') { $(this).val(''); } 
			});
			

	}

function clfRe(ele) // clearLoginForm - Toggle
	{
		/*
		$('#loginForm input:not([type=submit])').each(function(i)
			{
				if ($(this).attr('name') == 'login[email]' && $(this).val() == '')    { $(this).val('E-Mail-Adresse'); }
				if ($(this).attr('name') == 'login[password]' && $(this).val() == '') { $(this).val('Kennwort'); }
			});
		*/
	}
	

/* newsletter */
$(function()
	{
		
		$('div#newsletterPopups a').bind('click',function()
			{
				
				var url = $(this).attr('href');
				fenster = window.open(url, "blank", "left=30,top=50,width=1000,height=700,status=yes,scrollbars=yes,resizable=yes");
				fenster.focus();
				return false;
				
				
			}
		);
		
	});
