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

	$('#closeSidebar').click(function(){
		$('#content_right').hide();
		$('#content_left').css('width', 670);
	});

	$('div.top a').click(function () {
		$('body,html').animate({
			scrollTop: 0
		}, 800);
		return false;
	});
	
	$("a:not([href^='http://jg-webdesign.de'])").attr('target', '_blank');

	
});
