$(document).ready(function(){
	//Safe emails
	$('.sfml').each(function(index){
		var href = $(this).attr('href');
		$(this).attr('href','javascript:;')
		$(this).click(function(){
			if($('iframe[name="sfml'+ index +'"]').length == 0){
				$(this).attr('target','sfml'+ index );
				$(this).after('<iframe src="'+ href +'" name="sfml'+ index +'" border="0" width="0" height="0" frameborder="0"></iframe>')
			}else{
				$('iframe[name="sfml'+ index +'"]').attr('src',href);
			}
		});
	});
	
	$('.extl, a[rel*=external]').each(function(index){
		$(this).attr('target','blank')
	});
	
	//Lightbox images
	$('.lbimg,.lb').prettyPhoto({
		theme: 'light_rounded',
		horizontal_padding: 20,
		autoplay_slideshow: false,
		show_title: true,
		deeplinking: false,
		social_tools: false
	});
});
