﻿$(document).ready(
    function() {
        //$('#conext').height($(document).height());
    }
)

$(window).load(
    function() {
        $('#conext').height($(document).height());
        $('div#footer').css('position', 'absolute');
        $('div#footer').css('top', $(document).height());
        $('div#footer').css('left', 0);
    }
)

    function showNormalfoto(id) {
        $('#dialogContent').children().remove();
        $('#dialogContent').append('<img src="httpHandlers/ImagesHandler.ashx?id=' + id + '&type=2" />');
        $('#detail').css('height', 'auto');
        $('#detail').css('width', 'auto');
        $('#dialogContent').css('height', 'auto');
        $('#dialogContent').css('width', 'auto');
        $('#detail').jqm().jqmShow();
    }