/**
* Displays or hides a layer in with detailed picture or video
*
* @author Stephan Manteufel <sm@manteufel.info>
*
* @copyright (c) Ma-Kom Agentur http://www.ma-kom.de
**/

jQuery(document).ready(function() {
    jQuery('.closeWindow').each(function() {
        jQuery(this).click(function() {
            jQuery(this).parent().fadeOut(1000);
        });
    });
    jQuery('img.preview').each(function() {
        jQuery(this).click(function() {
            send_AjaxRequest ('/getPictureDetails.php', 'type=img&name=' + jQuery(this).attr('id'), 'setPictureDetails()');
            jQuery('#detailedView > div.mainContent').html('<img src="/images/catalog/medres/' + jQuery(this).attr('id') + '" class="link" id="' + jQuery(this).attr('id') + '" />');
            jQuery('#detailedView').fadeIn(1000);
            jQuery('#detailedView > div.mainContent > img.link').click(function() {
                jQuery('#detailedView > div.mainContent').html('<img src="/images/catalog/hires/' + jQuery(this).attr('id') + '" />');
            });
        });
    });
    jQuery('img.productPreview').each(function() {
        jQuery(this).click(function() {
            jQuery('#detailedView > div.mainContent').html('<img src="/images/content/medres/' + jQuery(this).attr('id') + '"class="link"  id="' + jQuery(this).attr('id') + '" />');
            jQuery('#detailedView').fadeIn(1000);
            jQuery('#detailedView > div.mainContent > img.link').click(function() {
                jQuery('#detailedView > div.mainContent').html('<img src="/images/content/hires/' + jQuery(this).attr('id') + '" />');
            });
        });
    });
});


var setPictureDetails = function () {
    var response = eval('(' + ajaxResponse + ')');

    try {
        jQuery('#detailedView > div.mainContent').append('<br /><b>' + response['title'] + '</b> ' + response['description'])
    } catch (e) {}

}

