$(document).ready(function() {
		//$("#Canvas").css('opacity', 0);
		//$("#Canvas").animate({opacity: 1}, 2000);
		
		var defaultInputValueArray = new Array();
		$('input[name^=tx_powermail_pi1], textarea[name^=tx_powermail_pi1]').each(function(){
			defaultInputValueArray[$(this).attr('name')] = $(this).val();
		});
		
		$('input[name^=tx_powermail_pi1], textarea[name^=tx_powermail_pi1]').blur(function(){
			if($(this).val()==''){
				$(this).val(defaultInputValueArray[$(this).attr('name')]);
			}
		});
		
		$('input[name^=tx_powermail_pi1], textarea[name^=tx_powermail_pi1]').focus(function(){
			if($(this).val()==defaultInputValueArray[$(this).attr('name')]){
				$(this).val('');
			}
		});
		
		
		if($('.tx_powermail_pi1_form').length>0&&$('.ContentTab').length>0){
			var tabID = $('.tx-powermail-pi1').parent().attr('id');
			if($('li.tab a').length>0){
				$('li.tab a').each(function(){
					if($(this).attr('href').match(tabID)){
						linkURL = $(this).attr('href').split('#');
					}
				});
			}
			else{
				var linkURL = new Array();
				linkURL[0] = document.URL;
			}
			var URL = $('#tx_powermail_pi1_action').attr('value').split('?');
			var newURL = linkURL[0]+'?'+URL[1];
			$('#tx_powermail_pi1_action').attr('value', newURL);
		}
		$('.KontaktBox a').click(function(){
			window.location = $(this).attr('href');
		});
		
		
});
		
		
    
        	
		
		

