// JavaScript Document

$(document).ready( function(){
	if( navigator.userAgent.match(/MSIE [6-8]/i) ) {
		$('.rounded').corners('10px');
	}
});

//------------------------------------------

function adjust(width,height) {
    width = parseInt(width);
	height = parseInt(height);
    if (width < 820 || height < 620) {
		$("#tabla").css({'width': '600px', 'height': '386.80px'});
		$("#marco").css({'width': '600px', 'height': '400px', 'margin-top': '-200px', 'margin-left': '-300px'});
    } else  {
		$("#tabla").css({'width': '800px', 'height': '580.20px'});
		$("#marco").css({'width': '800px', 'height': '600px', 'margin-top': '-300px', 'margin-left': '-400px'});
    } 
}

$(document).ready( function() {
    adjust($(window).width(),$(window).height());
    $(window).resize(function() {
        adjust($(window).width(),$(window).height());
    });
});



