// JavaScript Document

function jumpTo(l){
	
	location.href(l);
	
}

YAHOO.util.Event.onDOMReady(function(){

	var container = document.getElementById('container');
	var height = container.offsetHeight;
	
	if(height < 550){
		
		document.getElementById('intro').style.height = '500px';
		
	}

});