$(document).ready(function() {
	$('.ext_link').click( function() {
	        window.open( $(this).attr('href') );
	        return false;
	    });
	
	$('.adverts a').click( function() {
	        window.open( $(this).attr('href') );
	        return false;
	    });
	
//	$('.lightbox').lightbox({
//		fileLoadingImage: '/img/lightbox/loading.gif',
//		fileBottomNavCloseImage: '/img/lightbox/closelabel.gif'
//	});

	
	//Find all images in the body and run a function on each of them
	$('.news_details img.image_left').each(function(i) {
  
	  //grab the alt attribute from the current image.
	  var caption = $(this).attr('alt');
	  //Pop a p tag with class caption after the current img tag
	  if(caption) {	    
	    $(this).after("<p class='caption_left'>"+caption+"</p>"); 
	  }
  
	});
	
	//Find all images in the body and run a function on each of them
	$('.news_details img.image_right').each(function(i) {
  
	  //grab the alt attribute from the current image.
	  var caption = $(this).attr('alt');
	  //Pop a p tag with class caption after the current img tag
	  if(caption) {	    
	    $(this).after("<p class='caption_right'>"+caption+"</p>"); 
	  }
  
	});

});
