// Blocks auf der Startseite
$(document).ready(function(){
						   
	$(".pane-list li").click(function(){
         var thislink = $(this).find("a");
         if ( thislink.attr('target') == '_blank') // If target=_blank then open in a new window
         window.open(thislink.attr("href"));
      else
          window.location=thislink.attr("href");
      return false;
   });

}); //close doc ready


// für die Portfolio-Übersicht
$(document).ready(function(){
						   
	$(".pane-list-portfolio li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

}); //close doc ready


// für die Portfolio-Einzelseite
$(document).ready(function(){

   $(".pane-list-einzelseite li").click(function(){
         var thislink = $(this).find("a");
         if ( thislink.attr('target') == '_blank') // If target=_blank then open in a new window
         window.open(thislink.attr("href"));
      else
          window.location=thislink.attr("href");
      return false;
   });

}); //close doc ready
