/**
 * @author blazsak
 */
$(document).ready(function(){
   
  //  $("a[rel^='prettyPhoto']").prettyPhoto({
  //    theme: 'light_rounded',
  //    showTitle: false
  //  });
    $("a.fancy").fancybox();
  
  
    $('.img_anim').mouseover(function(){
      //alert('over');
      //$(this).find('a h3').css('color','#E0E8DF');
      $(this).animate({
        'opacity': 0.7
        
        
      },'fast',function(){
        $(this).animate({
          'opacity': 1
        },'fast');
      });
    }).mouseover();
   
  
    
    $("img[align='right']").css('float', 'right');
    $("img[align='left']").css('float', 'left');
   
  
    
  
    /**
     * DEBUG
     */
    $("#debug ul.tabs").tabs(".debug-pane-item", {tabs: 'a'});
    $("#debug  a.debug-init").toggle(function(){ $(this).addClass('on'); $('.debug-pane-item-' + $(this).attr('rel')).addClass('on');$('.debug-instance-' + $(this).attr('rel')).show();},function(){ $(this).removeClass('on'); $('.debug-pane-item-' + $(this).attr('rel')).removeClass('on'); $('.debug-instance-' + $(this).attr('rel')).hide();});
    
  
  
  
   
    
});

