$(document).ready(function()
{
	$('.we-imagebar a, .we-lightbox').each(function(){
		var u = $(this).attr('href').toLowerCase();
		var l = u.length;
		if (u.lastIndexOf('.jpg')==l-4||u.lastIndexOf('.jpeg')==l-5||u.lastIndexOf('.gif')==l-4||u.lastIndexOf('.png')==l-4) {
			$(this).fancybox({
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'elastic',
				'speedIn'		:	600, 
				'speedOut'		:	200,
				'padding': 1
			});
		} else if(u.indexOf('.html')>0 || u.indexOf('.pdf')>0) {
			// add external target for external HTTP links
			$(this).fancybox({
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'elastic',
				'speedIn'		:	600, 
				'speedOut'		:	200,
				'padding': 1,
 				'height'		:	$(window).height() * 0.9,
				'width'			:	$(window).width() * 0.9,
				'scrolling'		:	'no',
				'autoScale'		:	true,
				'titleShow'		:	false,
				'type'			:	'iframe'
			});
		} else {
			// the rest ...
		}
	});
});
