
// Globale Variablen
var ie6		 = 0;

var bg_image;

// Hooks
onloadHooks.push(function(){
	tx_igpageext_pi1_onload();
});

// Load-Funktionen
function tx_igpageext_pi1_onload(){
	
	if(typeof mybackground != 'undefined') {
		
		//bg_image = $('<img />').attr('src', mybackground);
		$('.header').css('background', 'url('+mybackground+') no-repeat');
		
		if(typeof startseite != 'undefined') {
			animateStartseite();
		}else {
			$('.header').css('height', 220);
		}
		
		if(typeof no_kontakt_nummer == 'undefined') {
			$('.header_knummer').css('display', 'block');
		}
		
		
	}else {
		//$('.inner_wrap').css('background', '#fff');
	}
	
	
	
}



function animateStartseite() {
	//bg_image.css('display', 'none');
	//bg_image.appendTo('.header');
	
	$('.header').css('border-bottom', '1px solid #ccc');
	
	$('.header').animate({
		height: 220,
		opacity: 1
		}, {
			    duration: 1000,
			    easing: 'jswing',
			    complete: function() {
			    	$(bg_image).fadeIn(3000);
			    	$('.header_knummer').fadeIn(1000);
			    	$('.header').css('border-bottom', 'none');
			 	}
	}); 
	
}


