// Change class (topic_pages) for swf objects
// Need apply flashvar in title 
make_flash_topic = function (topic_name) {
	$('#'+topic_name).flash(
		{ src: 'http://gen.animeseuespaco.com/images/flashs/topics.swf', height: 48, width: 600, wmode: 'transparent' },
		{ version: 8 },
		function(htmlOptions) {
		$this = $(this)
			htmlOptions.flashvars.topic = $this.attr('title');
			$this.before($.fn.flash.transform(htmlOptions));						
		}
	);
}
Submit_Search_Audio = function (input) {
	$search_mp3 = $(input);
	if ($search_mp3.val() == "" || $search_mp3.val() == "Entre com o nome do artista ou música para buscar") {
		$search_mp3.focus();
		alert("Digite o nome do artista ou música que deseja encontrar.");
		return false;
	}else {
		return true;
	}
}
