$(document).ready(function() {



$('#feature').itunesFeature();

var twittterFeed = false;
if (twittterFeed) {
	$('#feature').css({'top':'25px'});
	$('#twitterFeedLine').css({'opacity':'1'});
}	

$('#biografie-content p').jScrollPane();
$('#impressum-content p').jScrollPane();


$.easing.easeInOutExpo = function(x, t, b, c, d) {
				if (t==0) return b;
				if (t==d) return b+c;
				if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
				return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
			};
			
$('.itunesfeature a').click(function(){
				var type = $(this).attr('rel');
				if (type == 'navLink') {
					var $target = $(this).attr('href');
					$.scrollTo( $target+'-content', 1800, {offset:-100, margin: true,axis:'x', easing:'easeInOutExpo'});
					$('nav ul li a').removeClass('active');

					$($target+'-menu').addClass('active');					
				}
				else {
				// nothing to do here
				}
			});
	

			
$('#newsletter-content form input[type="text"]').click(function(){
	$(this).val('');
});
			


$('.top-nav').click(function(){
	var target = $(this).attr('href');
	$.scrollTo( target+'-content', 1800, {offset:-100/* , margin: true */,axis:'x', easing:'easeInOutExpo'});
	$('.top-nav').removeClass('active');
	$(this).addClass('active');
	
	
	if (target == '#videos' || target == '#impressum') {
		$('#impressumBtn').animate({'top':135});
		$('#fbButton').animate({'top':95});
	}
	else {
		$('#impressumBtn').animate({'top':200});
		$('#fbButton').animate({'top':165});
	}
});

$('#foto-nav ul li a').click(function(){
	var paneno = $(this).attr('href');
	$('#foto-slider').scrollTo(paneno, 1200, {margin: true, easing:'easeInOutExpo'});
	return false;
});

$.getScript(apiEndpoint + vimeoUsername + '/videos.json?callback=' + videosCallback);
		
jQuery('.lightbox').lightbox();			

initMusic();


});
