/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
	Cufon.replace('.s2010 .title');

    $('.cgsTooltip').tooltip({
        showURL: false,
        track: true,        
        opacity: 1,
        extraClass: "tooltip_t1",        
        top: -10,
        delay: 0
    });
	
	$('#homepage_tab').tabs({
		selected: 1
	});
	$('#features_list').accordion({
		autoheight: true
	});	
	
	$('.speaker_info').accordion({ 
    	autoheight: false 
	});
   
});

function ajaxStatistics(){
	$("#statisticsResult").empty();
	var groupID = document.getElementById('groupSelectBox').options[document.getElementById('groupSelectBox').selectedIndex].value;
	
	$.ajax({
		type: "POST",
		url: "statistics_php.php",
		data: "groupid=" + groupID,
		success: function(html){
			$("#statisticsResult").append(html);
		}
		   
	});
}




