var lang = '';
$(document).ready(function(){

  

    lang = $("body").attr("id");
    $("a.restricted").click(showNotification);
    $("a.notif_back").click(closeNotification);
    
    $("#comments .pagination a").attr("href", $("a.join_url").attr("href"));       
    
    /*
      SELECT IN THE PORNSTAR WIDGET
    */
    $("select#all_pornstars").change(function(){ 
        var id = $(this).val(); 
        window.location = id ;
    });   

    
    /*
      SELECT IN THE CATEGORIES WIDGET
    */
    $("select#all_tags").change(function(){ 
        var id = $(this).val(); 
        window.location = id ;
    });     
        
});


function showNotification()
{
   var info = $(this).attr("href").replace("#", "").split("-");
    
   var notification = $("#" + info[0]);
   notification.find("li").removeClass("active");
   notification.find("li#notif_" + info[1]).addClass("active");
   notification.fadeIn("slow");  
   
   return false;
}

function closeNotification()
{
    $(this).parents(".notification").fadeOut("slow");
    return false;         
}