﻿$(document).ready(function() {

    //code voor itemslist show/hide
    $('.itemlistmemomoreless').click(function(e) {
        $(this).next().toggle('slow');
    });

    //code voor popup niewsitems
    $("#Dialog").dialog({ autoOpen: false, modal: true, height: 470, width: 770 });

    $('.showitemdetail').click(function(e) {
        e.preventDefault();
        //-> load niet gebruiken, werkt maar één keer -> via IFrame
        //$('#DialogGraph').load('ShowGoogleGraph_CampagneEvolution.asp?');
        $('#IF_Dialog').attr('src', '/ItemDetail.aspx?ItemID=' + $(this).find('input.ItemID').val() + '&L=' + $(this).find('input.ItemL').val());
        $('#Dialog').dialog('option', 'title', $(this).find('input.DialogTitle').val());
        $('#Dialog').dialog('open');
    });

});


