jQuery.noConflict();

jQuery(document).ready(function($) {

	var h2Text = '';
	$('h2').each(function() {
		var h2Text = $(this).text().replace(/ (\w+)$/,' $1') || '';
		$(this).html(h2Text);
	});
	
	$('div').find('.commenthelp').hide();
	var myurl = document.URL;
	var mysearch = myurl.search(/#comment/);
	if(mysearch == -1) {
		//$('ol.commentlist').hide();
		$('a#commentlist').toggleClass('expand');
		$('a#commentlist').toggleClass('collapse');
	}
	$('a#commentlist').toggleClass('expand');
	$('a#commentlist').toggleClass('collapse');
	$('a#ToogleSidebar').click().toggle(function() {
		$('#sidebar').animate({
			width: 'hide',
			opacity: 'hide'
		}, 'slow');
		$(this).toggleClass('sidebarcollapse');
		$(this).toggleClass('sidebarexpand');
	}, function() {
		$('#sidebar').animate({
			width: 'show',
			opacity: 'show'
		}, 'slow');
		$(this).toggleClass('sidebarcollapse');
		$(this).toggleClass('sidebarexpand');
	});
	$('a.hidelandingsites').click(function() {
		$('div.landingsites').slideToggle('middle');
		return false;
	});
	$('a#writecomment').click(function() {
		$('form#commentform').slideToggle('middle');
		$(this).toggleClass('expand');
		$(this).toggleClass('collapse');
		return false;
	});
	$('a#commenthelp').click(function() {
		$('div').find('.commenthelp').slideToggle('middle');
		$(this).toggleClass('expand');
		return false;
	});
	$('a#commentlist').click(function() {
		$('ol.commentlist').slideToggle('middle');
		$(this).toggleClass('expand');
		$(this).toggleClass('collapse');
		return false;
	});
	
	/* Comment preview */
	$('#comment').one('focus', function() {
		$('#comment').parent().after('<h4 class="live_preview_h">Live Kommentar Vorschau</h4><ol class="commentlist_preview"><li id="live_preview_li"><img class="avatar" src="http://bueltge.de/wp-content/themes/black_label/images/avatar.gif" title="Dein Gravatar" alt="id" width="30" height="30" />Kommentar <small> von </small><cite class="live-preview-author">Dir</cite><br /><small class="commentmetadata">heute und jetzt</small><div class="commenttext" id="live-preview"></div></li></ol>');
	});
	$('#commentform').submit(function() {
		$('#comment').parent().after('');
	});
	var $comment = '';
	$('#comment').keyup(function() {
		$comment = $(this).val();
		$comment = $comment.replace(/\n/g, "<br />").replace(/\n\n+/g, '<br /><br />').replace(/(&lt;\/?)script/g,"$1noscript");
		$('#live-preview').html( $comment );
	});

	/* error handling */
	$('form#commentform').submit(function() {
		$('form#commentform .error_msg').remove();
		var hasError = false;
		$('.requiredField').each(function() {
			if($.trim($(this).val()) == '') {
				var labelText = $(this).prev('label').text().replace(' (bleibt versteckt)', '');
				$(this).parent().append('<span class="error_msg">' + labelText + ' !</span>');
				hasError = true;
			}
		});
		if(hasError) {
			return false;
		}
	});
	
	$('a.tweet-this').tweetIt({
		linkEl: "shortlink",
		typeATweet: "Hinterlasse hier deinen Tweet",
		intro: "Keine automatischen Texte! Schreibe eine eigene persoenliche Meldung zu dieser Seite. Der Link wird automatsich ergaenzt."
	});
});

