/** 
 * Jumps to an url after a specific time. 
 *
 * @author 	Stefan Fruhen
 * @version 	1.0.0
 * 
 * @param	url		The URL to which should be forewareded. 
 * @param 	sek		The time after which the content should change.
 *
 * @return	void.
 */

function timedForeward( url, sek )
{
	var intv = setInterval( function() {
		
		location.href = url;
		clearInterval( intv ); 
	}, sek );
}