
$.preloadImages = function(preload){
	$(document.createElement('img')).bind('load', function(){ 
		if(preload[0]) this.src = preload.shift();    
	}).trigger('load'); 
}

$.preloadImages([ '/images/stolb_menu_show.gif' ]);



function frameFitting() {
	var i=0;
	$('iframe').each(
		function(){
			if( $(this).attr("class")=='iframe_banner' && ( !$(this).attr("value") || $(this).attr("value")=='auto' ) ){
				this.height = this.contentWindow.document.body.scrollHeight; // +0+'px';
				//$().contents().find(
			}
		}
	);
	
}

onload = frameFitting;



