var warp = "#fancybox-wrap";
var warp = "#fancy_outer";

$(document).ready(function () {


    $("a.iframe").fancybox({
        'zoomSpeedIn': 500,
        'zoomSpeedOut': 250,
        'overlayShow': true,
        'frameWidth': 580,
        'frameHeight': 435,
        'imageScale': true,
        'titleShow': true,
        'centerOnScroll'    : true,
          'padding': 5
       
    });

   
    //$(window).scrollTop() 

 



});


$("a.iframe").click(function () {
    alert('click top=' + $(warp).css('top') + '\r\n' + 'position=' + $(warp).css('position'));

    $(warp).css('top', '50px');
    $(warp).css({ 'top': '50px' });
});

function OnShow() {
    $(warp).css('top', '50px');
    $(warp).css({  'top': '50px'  });

    alert('top=' + $(warp).css('top') + '\r\n' + 'position=' + $(warp).css('position'));
}
function onStart() {
    $(warp).css('top', '50px');
    alert('onStart top=' + $(warp).css('top') + '\r\n' + 'position=' + $(warp).css('position'));
}


function onComplete() {
    alert('in on compleate');
}