GGM = {
    updateSafetyMeter: function(total) 
    {
	var max = 160;
	var temp = 0;
        var sum = 0;
	$('.safety_meter li span').each(function() {
		var val = $(this).attr('rel');
                sum = sum + parseInt(val);
		if (val > temp) 
		    temp = val;
	    });
	var mlt = max / sum;
	$('.safety_meter li span').each(function() {
		val = $(this).attr('rel');
		$(this).width(val*mlt + 'px');
	    });
    },
    featuredVideo: function(video_id) 
    {
	$('.video_player li').hide();
	$('.video_player li#video_' + video_id).show();
    }
}