function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=700,height=500');");
}

$(document).ready(function()
{
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	//$('.body_left').
	height=($(document).height());
	//height2=($('.contents div').height());
	//alert(height2);
	$('.body_left').height(height);
	$('.body_right').height(height);
	//$('.contents div').height(height2);
	$('.fotoalbum a').lightBox({fixedNavigation:true});
	
	
});


