$(document).ready(function() {

	/* Creates target _blank for anchors with rel=external */
	$('a[rel=external]').attr('target', '_blank');

	
	var h = $('#item').height();
	$('#itemBg').height(h + 30);

	$('.resize .item').each(function() {
		var h = $(this).height();
		$(this).prev('.block').height(h + 30);
	});

	resize();
});

/* Init LightBox */
$(function() {
	$('a.lightbox').lightBox();
});

$(window).resize(function() {
	resize();
});
