function goLink(l){
  console.log("get link",l)
}
headerswf = $.flash({
	swf: '/static/flash/header.swf',
	height:200, width:820,
	wmode: 'transparent'
});

videoswf = $.flash({
	swf: '/static/flash/vid.swf',
	width:420, height:280,
	wmode: 'transparent'
});

$(document).ready(function () {
	$('#header').html(headerswf);
	$('#vid').html(videoswf);
	
	// preload mouseover images
	var fbl = new Image( );
	fbl.src = "/static/images/facebooklink.png";
	
	var msl = new Image( );
	fbl.src = "/static/images/myspacelink.png";
	
	var ytl = new Image( );
	fbl.src = "/static/images/youtubelink.png";
	
	var twl = new Image( );
	fbl.src = "/static/images/twitterlink.png";

});