var min_width=750;
var min_height=453;

function correct_image() {
    var im_h=$('#image_holder img').height();
    var im_w=$('#image_holder img').width();
    $('#image_holder img').css('display','none');
    var w_h=$(window).height();
    var w_w=$(window).width();
    $('#image_holder img').css('display','block');
    if(w_h<=min_height || w_w<=min_width) {
        $('#image_holder img').height(min_height);
        $('#image_holder img').width(min_width);
    } else {
        if(im_h>w_h || w_h<906) {
            $('#image_holder img').height(w_h);
            $('#image_holder img').width( im_w*w_h/im_h );
        }
        if($('#image_holder img').width()>w_w) {
            $('#image_holder img').height( $('#image_holder img').height()*w_w/$('#image_holder img').width() );
            $('#image_holder img').width(w_w);
        } 
    } 
    var left=w_w/2- $('#image_holder img').width()/2;
    var top=w_h- $('#image_holder img').height();
    if(left<0) left=0;
    if(top<0) top=0;
    $('#image_holder img').css({
        'left': left+'px',
        'top': top+'px'
    });  

}

function after_load() {
    $('#preloader').css('display','none');
    var im_h=$('#image_holder img').height();
    var im_w=$('#image_holder img').width();
   
    $('#image_holder img').parent().css({
        'display':'none',
        'opacity':1
    }); 
    var w_h=$(window).height();
    var w_w=$(window).width();
    $('#image_holder img').parent().css({
        'display':'block',
        'opacity':1
    }); 
    if(w_h<=min_height || w_w<=min_width) {
        $('#image_holder img').height(min_height);
        $('#image_holder img').width(min_width);
    } else {
        if(im_h>w_h) {
            $('#image_holder img').height(w_h);
            $('#image_holder img').width( im_w*w_h/im_h );
        }
        if($('#image_holder img').width()>w_w) {
            $('#image_holder img').height( $('#image_holder img').height()*w_w/$('#image_holder img').width() );
            $('#image_holder img').width(w_w);
        }   
        $('#image_holder img').parent().css({
            'display':'none',
            'opacity':1
        }); 
        $('#image_holder img').parent().fadeIn(600);
    }  
    var left=w_w/2- $('#image_holder img').width()/2;
    var top=w_h- $('#image_holder img').height();
    if(left<0) left=0;
    if(top<0) top=0;
    $('#image_holder img').css({
        'left': left+'px',
        'top': top+'px'
    }); 

}

$(function(){
    
    if($('#image_holder img').height()>0) {
        after_load();
    }else {
        $('#image_holder img').load(function(){

            after_load();
        });
    }
    $(window).resize(function() {
        correct_image();

    });

});
