
$(document).ready(function() {
    
     $("a.prettyPhoto").prettyPhoto({
        theme: 'dark_rounded' /* light_rounded / dark_rounded / light_square / dark_square / facebook */
    });

    $('.headimg').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

    // Wrap img alt to div
    /*
    $('#rightBar .imgLeft,  #rightBar .imgRight').each(function() {
    $(this).wrap('<div class="caption"></div>').after('<div>' + $(this).attr('alt') + '</div>');
    $(this).removeClass('imgLeft');
    
    $(this).parent().width($(this).width()).height($(this).height()+4).children('div').each(function() {
      $(this).css({width: $(this).siblings('img').width() - 20, opacity: 0, display: 'block'});
    });
  }); 
  */
    $('#rightBar .imgLeft,  #rightBar .imgRight').each(function() {
    $(this).removeClass('imgLeft');
    
    $(this).parent().children('div').each(function() {
      $(this).css({width: $(this).siblings('img').width() - 20, opacity: 0, display: 'block'});
    });
  }); 
  
  // Show captions on hover
  $('.caption').hover(
    function() {$(this).children('div').stop().fadeTo(500, 0.7);},
    function() {$(this).children('div').stop().fadeOut(500);}
  );


});
