function careers() {
	var thePlayer = null;
	$("a[href$=flv]").unbind("click").bind("click", function(e){
		if (thePlayer == null) {
			$('#video').empty().prepend(video.embed($(this).attr('href'),video.size.small)).andSelf()
				.animate({'opacity': 1, 'duration':50},
					function(){
						thePlayer = $('#video').find('object')
					});
		} else {
			try {
				thePlayer.get(0).playVideo($(this).attr('href'));
			} catch(e) {
				$('#video').empty().prepend(video.embed($(this).attr('href'),video.size.small));
			}
		}
		return false;
	});
}