var $j = jQuery.noConflict();


$j(document).ready(function(){
	var width  = screen.width;
	var height = screen.height;
	$j("html>body #rap").hide();
	if(width< 1000) {
		width = 1024;
	}
	$j("html>body #rap").width( width + 14);
	$j("#loading_b").hide();
	$j("html>body #rap").show("");
});

