$(document).ready(function(){
     
    $("#content img").each(function (i) {
       var img_href = $(this).attr("src");
       
       if($(this).attr("alt")){
         var title = $(this).attr("alt");
       }else{
         var title = '';
       }

       if (img_href.indexOf('content/images/')!=-1 && img_href.indexOf('content/images/small')==-1){
         $(this).wrap('<a href="'+img_href+'" class="fancybox" title="'+title+'" rel="group"></a>');
       }else{
//         $(this).wrap('<div style="height:200px; width:130px; float:left; padding:20px;"><center><b></b><div style="text-align:center;">'+title+'</div></center></div>');
       }
       
     });
     
     $('#content a[class=fancybox]').fancybox({ 'zoomSpeedIn': 500, 'zoomSpeedOut': 400, 'overlayShow': true, 'easingIn' : 'easeOutBack', 'easingOut' : 'easeInBack' });
     $('.div_item_pictures a[class=fancybox]').fancybox({ 'zoomSpeedIn': 500, 'zoomSpeedOut': 400, 'overlayShow': true, 'easingIn' : 'easeOutBack', 'easingOut' : 'easeInBack' });
 
     $('a[class=new_page]').fancybox({'frameWidth':500,'frameHeight':500}); //, 'zoomSpeedIn': 600, 'zoomSpeedOut': 300, 'easingIn' : 'easeOutBack'
     $('a[class=edit]').fancybox({'frameWidth':600,'frameHeight':550}); //, 'zoomSpeedIn': 600, 'zoomSpeedOut': 500, 'easingIn' : 'easeOutBack', 'easingOut' : 'easeInBack'

     $('#karte').corner("15px");
     
     $('#foto_banner').css('display','block');
     
     
     
     /*  Jquery tools  */
    // $("ul.tabs").tabs("div.panes > div"); 
     
});
