var flash_video_width = 250; var flash_video_height = 188; $("#logo_image").ready(function(){ var maxWidth = 250; var maxHeight = 55; var thisImgHeight = $("#logo_image").height(); var thisImgWidth = $("#logo_image").width(); if( thisImgWidth > maxWidth ) { $("#logo_image").css("width",maxWidth); } if( thisImgHeight > maxHeight ) { $("#logo_image").css("height",maxHeight); } setTimeout(function(){ $("#logo_image").fadeIn("slow"); $("#tmpl_logo").css("background", "transparent"); },1000); }); /*** Оразмеряване на картинките в мини-галерията ***/ $("#tmpl_mod_gallery img").ready(function(){ var modGalleryMaxWidth = 300; var modGalleryMinWidth = 227; var thisModGalleryHeight = $("#tmpl_mod_gallery img").height(); var thisModGalleryWidth = $("#tmpl_mod_gallery img").width(); if( thisModGalleryWidth > modGalleryMaxWidth ) { $("#tmpl_mod_gallery img").css("width", modGalleryMaxWidth); } if( thisModGalleryWidth < modGalleryMinWidth ) { $("#tmpl_mod_gallery img").css("width", modGalleryMinWidth); } $("#tmpl_mod_gallery img").css("height","auto"); });