$(document).ready(function(){
	var height = window.innerHeight ? window.innerHeight : $(window).height();
	$("#krpanoDIV").css('height', height);
	$(window).bind('resize', function(e){
		var height = window.innerHeight ? window.innerHeight : $(window).height();
		var width = $(window).width(); 
		$("#krpanoDIV").css('height', height);
		$("#krpanoDIV").css('width', width);
	}); 
}); 

