$(document).ready(function(){
    $(document).pngFix(); 
    $(".resize img").css( {'width' : $(window).width() + "px", 'height' : $(window).width() / 1.46 + "px"} );
    $("#logo").css({'left' : $(window).width()/1.54 -222 + "px", 'top' : $(window).width()/4 + "px"});
    initializeGrid();
});



function initializeGrid() {

    $(window).resize(function(){
        $(".resize img").each(function() {

            if( $(window).width() > $(window).height() * 1.46 ){
                //alert("aa");
                var width = $(window).width() + "px";
                var height = $(window).width() / 1.46 + "px";
                
                $(this).css("width",width);
                $(this).css("height",height);
                $("#logo").css({'left' : $(window).width()/1.54 -222 + "px", 'top' : $(window).width()/4 + "px"});
            } else {
                //alert("aa");
                var height = $(window).height() + "px";
                var width = $(window).height() * 1.46 + "px";

                $(this).css("width",width);
                $(this).css("height",height);
                $("#logo").css({'left' : $(window).height()/1.05 -222 + "px", 'top' : $(window).height()/2.7 + "px"});
            }


        });
    });

}