$(document).ready(function(){

//open link in new window	
	$("a[rel='external']").click(function(){
		window.open($(this).attr('href'));
		return false;
	});

//tooltips	
	$('.info_tooltip').tooltip({
			delay:0,
			showURL: false,
			fade:250,
			top:-5,
			left:7
	});

//back button	
	$(".step_back_button").click(function(){
		history.go(-1);
	});
	
	curtimestamp = Number(new Date());
//flash header embed	
	$('#header_animation').flash({ 
		src:webpath+'files/animation.swf?'+curtimestamp,
		width:732,
		height:294
	 });
	 
	 //alert(webpath+'files/animation.swf?'+curtimestamp);
});
