$(document).ready(function() {
	
	var tamanyo = TamVentana();
	$(this).find('#wrapper').find('#content').find('.contimg').find('#imginfo').css({width: tamanyo[0]-700});
	//$(this).find('#wrapper').find('#content').find('.contimg').find('#imginfo').css({height: tamanyo[1]-150});
	
	$(window).bind('resize', function() {
		var tamanyo = TamVentana();
		$(document).find('#wrapper').find('#content').find('.contimg').find('#imginfo').css({width: tamanyo[0]-700});
	});
});

function TamVentana() 
{ 
	var tam=[0, 0]; 
	if (typeof window.innerWidth != 'undefined')
		tam=[window.innerWidth,window.innerHeight];
	else 
		if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientWidth != 'undefined'
				&& 	document.documentElement.clientWidth != 0)
			tam=[document.documentElement.clientWidth, document.documentElement.clientHeight];
		else
			tam=[document.getElementsByTagName('body')[0].clientWidth, document.getElementsByTagName('body')[0].clientHeight];
	return tam;
}