
$(document).ready(function() {
 
  // init lightbox
  $lbox58 = $( '.jqfancybox').fancybox({
      cyclic          : 0,
      transitionIn    : 'none',
      transitionOut   : 'none',
      changeFade      : 0,
      overlayOpacity  : 0.9,
      overlayColor    : '#000',
      swf             : {
  			wmode : 'transparent',
  			allowfullscreen : 'true'
  		},
  		titleShow: 1,
    	//showCloseButton	: false,
    	titlePosition 		: 'inside',
    	//titleFormat		: formatTitle,
    	onComplete	:	function() {
    		$("#fancybox-wrap").hover(function() {
    			$("#fancybox-title").show();
    		}, function() {
    			$("#fancybox-title").hide();
    		});
    	}

  });
});



