//scroll the message box to the top offset of browser's scroll bar
$(window).scroll(function() {
	var position = $(window).scrollTop();
	if (position < 320) {
		position = 320;
	}
	$('#sidebar').animate({
		top: position+"px" 
	},{queue: false, duration: 350});
});


// Anfrage Betreff
$(document).ready(function(){	
	$('.logo a').each(function() {
		var title = $(this).parent().parent().find('h4').html();
		
		$(this).click(function() {
			$('#title').attr('value', 'Anfrage bzgl.'+title);
		});
	});
	
	$('.song a').each(function() {
		var title = $(this).parent().parent().parent().find('h4').html();
		
		$(this).click(function() {
			$('#title').attr('value', 'Anfrage bzgl. Song "'+title+'"');
		});
	});
}); 
