if(($.browser.msie)){
	if($.browser.version < 7.0){
	
		window.onresize = function() {
	
			var body = document.getElementById('body');
			var div = $('#geral');

			if(body.offsetWidth <= 1026) {
				$('#geral').css("width", "998");

			}else{
				$('#geral').css("width", "auto");

			}
		}
	}
}

function iniciaNavegador(){

	if(($.browser.msie)){
		if($.browser.version < 7.0){

			var body = document.getElementById('body');
			//alert(body.offsetWidth);
			var div = $('#geral');

			if(body.offsetWidth <= 1026) {
				$('#geral').css("width", "1000");

			}else{
				$('#geral').css("width", "auto");

			}
		}
	}
}
$(document).ready( function(){
	iniciaNavegador();
	$(".vValores .parcelamento").hover(function(){
		$(this).find('.table').show();
	},function(){
		$(this).find('.table').hide();
	});
})