/**
 * ffspy.com core.js
 * ahmet alp balkan, ahmet at ahmetalpbalkan dot com
 */

function evalRadioButtons(type){
	if(type == '6h' || type =='h'){
		$('#empty_mails').attr('checked', true);
		$('#empty_mails').hide();
		$('#disabled_empty_mails').show();
	} else {
		$('#empty_mails').show();
		$('#disabled_empty_mails').hide();
		$('#empty_mails').attr('disabled', false);
	}
}

$(document).ready(function() {
	Cufon.set('fontFamily', 'bohemian').replace('h1')('h4')('p.stats');
	
	jQuery.each($(':input.r'), function(i, obj){
		if($(obj).attr('checked')){
			evalRadioButtons($(obj).val())
		}
	});
	
	$(':input.r').click(function(){
		evalRadioButtons($(this).val());
	})
});
