

jQuery(document).ready(function(){
	
	$('.replace-me').each(function(){
		  
	        if(!$(this).children()){
	  
		  $alt = $(this).text();
		  $src = '/inc/dyntext.php?text=' + $alt;
		  
		  if($(this).hasClass('ft')){
			  $src += '&font-size=15';	
		  }
		  
		  if($(this).hasClass('ct1')){
			  $src += '&font-size=12';	
		  }
		  
		  if($(this).hasClass('ct2')){
			  $src += '&font-size=10';	
		  }
		  
		  $(this).html('<img src="' + $src + '" alt="' + $alt + '" />');
		
		}else{
		  
		  // do nothing
		  
		}
		
	});
	
	
	$(function() {
        $('.lightbox').lightBox({
		
// Configuration related to images
			imageLoading:			'/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'/images/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
		
		});
    });
	
});
