/*--------------- Core functions --------------------*/
function showlyric(id){
$(".lyric_fade").fadeIn('slow');

//$.get("test.php", { name: "John", time: "2pm" } );
$.get("includes/showlyric.php", {id : id}, function(data){

if (data.length>0){

	$(".lyric_fadecontent").html(data);
   
   } 
  }) 
};

/*--------------- Effect Handlers --------------------*/
function hidelyric() {
$(".lyric_fade").fadeOut('slow');
};
function show_loadbox() {
$(".loading_box").fadeIn('slow');     
};
function hide_loadbox() {
$(".loading_box").fadeOut('slow');     
};

function sendcomment() {
/*---------- VARIABLES --------*/    
var login_val =$("#login").val();
var password_val =$("#passw").val();
var comment_val =$("#comment").val();
/*------------------------------------------*/
$.post("class/addcomment.php", {login : login_val, password : password_val, post_comment : comment_val}, function(data){
if (data.length>0){
$("").html(data);
                  } 
  }) 
};

