
j$=jQuery.noConflict();

function reSIZE(){

	var windowHeight=j$(window).height();
	if(windowHeight > 550){
		var Height=windowHeight;
	}else{
		var Height=550;
	}
	j$("#topswf").height(Height);

	var windowWidth=j$(window).width();
	if(windowWidth > 890){
		var Width=windowWidth;
	}else{
		var Width=890;
	}
	j$("#topswf").width(Width);
}

j$(window).resize(function(){
	reSIZE();
});

j$(function(){
	reSIZE();	
});


