(function($){
$(document).ready(function() {
	/* TARGET BLANK */
	$("a").filter(function() { return this.hostname && this.hostname !== location.hostname;}).attr('target', '_blank');
	$('.post a').click(function(){
		if( $(this).attr('href').substr(-4)=='.jpg' ){
			$.fancybox({
			'href'			: 	this.href,
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	false
        });
		return false;
		}
	});
});

})(jQuery);;




