﻿$(document).ready(function() 
{
    var bm = new BasketManager();

    $("a.add-basket").click(function(e) 
    {
        e.preventDefault();
        var value = $(this).parents("div.ficheJS").children("input[type='hidden']").val();
//        $.history.load("add-" + value);
        bm.Add(value);
    });

    $("a.del-basket").live("click", function(e) 
    {
        e.preventDefault();
        var value = $(this).parent().find("input[type='hidden']").val();
//        $.history.load("delete-" + value);
        bm.Remove(value);
    });
    
    
    $(".ficheJS a.lienZoom").click(function(e)
	{
	    e.preventDefault();
	    var value = $(this).parents("div.fiche").children("input[type='hidden']").val();
	    $.get("/popup.aspx", {id: "ZoomBook", idBook: value}, function(data)
        {
	        var pm = new PopupManager();
	        pm.Show(data);
	    });
	});
	
	$("a.back-url").click(function(e)
	{
	    e.preventDefault();
	    history.back();
	});
	
	
   // $.history.init(bm.RefreshBasket);       
});
