Cufon.replace('.siderss');

$(function(){
	$('.hoverbubble').hide();
	
	$('.hoverbubble').each(function(){
		position = $(this).prev().position();
		
		$(this).css({
			'position':'absolute',
			'left':(position.left-210),
			'top':(position.top-2),
			'width':170,
			'padding':'5px 20px 5px 10px',
			'background':'transparent url(/career/graphics/point.gif) top right no-repeat',
			'color':'#FFF'
		});
		$('head').append('		<style type="text/css">\
			.hoverbubble a{\
				color:#F77;\
			}\
		</style>');
		
		$(this).prev().css('display','block');
		var bottom = $('<div></div>').css({'border-bottom':'1px solid #FFF','margin':'5px -10px -5px -10px'});
		$(this).append(bottom)
		$(this).prev().hover(
			function(){
				$(this).next().fadeIn('fast');
			},
			function(){
				$(this).next().fadeOut('fast');
			}
		);
		
	});
	
})
