$(document).ready(function(){

	$("a[rel='external']").attr('target','blank');
	
	$(function() {
		$('#nav').droppy({speed: 100});
	});
	
	setWindow();
	
	var h = $('#account_content').height();
	if(h < 450){
		$('#account_content').height(450)
	}
});


$(window).resize(function(){
	setWindow();
});

function setWindow(){
	var h = $(document).height();
	$('#wrapper').height(h);
}