// toggles the slickbox on clicking the noted link  

var $ = jQuery;

// wait for the DOM to be loaded
$(document).ready(function() {
	$("#featurelist").tabs();
	//hide the all of the element with class topic
    $(".topic").hide();
    //toggle the componenet with class topic
    $(".topicExpand").click(function()
    {
    	$(this).next(".topic").slideToggle('fast');
	});
	
	//this is used to populate our direct download link to the .air file
	//$(".directDownloadLink").attr("href", flashvars.appurl);

});