var flash_video_width = 250; var flash_video_height = 150; $("#logo_image").ready(function(){ var maxWidth = 240; var maxHeight = 140; 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); });