$(document).ready(function() {

	DD_roundies.addRule('form, #form', '10px', true);
	DD_roundies.addRule('.rounded', '3px', true);
	DD_roundies.addRule('.crounded', '8px', true);
	DD_roundies.addRule('.c_right', '0px 0px 8px 8px', true);
	DD_roundies.addRule('.match.next', '8px', true);
	DD_roundies.addRule('.btn_rounded','8px',true);
	
	$('.player_icon').hover(
		function(e){
			//$('.player_info[id='+$(this).attr('rel')+']').fadeIn();
			$('.player_info[id='+$(this).attr('rel')+']').css({'display':'block'});
		},
		function(e){
			$('.player_info[id='+$(this).attr('rel')+']').css({'display':'none'});
			//$('.player_info[id='+$(this).attr('rel')+']').fadeOut();
	});
});
