$(document).ready(function() {
	// foto popup
	f=$("#fotos img").fullsize({forceTitleBar:false});
});

$(window).load(function() {
	// foto rounded corners
	cornersStart='<div class="ml"><div class="mr"><div class="tm"><div class="tr"><div class="tl"><div class="bm"><div class="bl"><div class="br">';
	cornersEnd='</div></div></div></div></div></div></div></div>';
	
	$("#fotos div.foto").each(function(){
		html=$(this).html();
		$(this).html(cornersStart+html+cornersEnd);
		w=$(this).find('img:first').width();
		h=$(this).find('img:first').height();
		$(this).css({'height':h,'width':w});
		$(this).find('div').css({'height':h,'width':w});
		//
		img=$(this).find('img');
		src=$(img).attr('src');
		$(img).attr('src','site/assets/img/p.png');
		$(this).css({backgroundImage:'url('+src+')'});
	});
	
});

