

$(function(){
	//proccess keywords
	if(typeof(_savvy_page_content_zone_id)!="undefined" && _savvy_page_content_zone_id!=null){
		if(typeof(_savvy_keywords)!="undefined" && _savvy_keywords!=""){
			savvy_setupKeywordsIntoZone(_savvy_keywords,_savvy_page_content_zone_id);
		}
	}

	//proccess voice link
	$("a[@voice]").attr("href","javascript:void(0)");
	$("a[@voice]").bind("click",function(){
		savvy_playVoice($(this).attr("voice"));
		return false;
	});

});

