function resizescreen(){	
	var reset = $(window).width();	
	if((reset > 800)&&(reset < 1024)){		
		$(".container").css('width', 1079);	
		$(".inside-footer").css('width', 1079);	
		$(".first-container").css('width', 548);
		$(".navigation").css('width', 530);			
	}else if((reset > 1024)&&(reset < 1200)){		
		$(".container").css('width', 1079);	
		$(".inside-footer").css('width', 1079);	
		$(".first-container").css('width', 548);
		$(".navigation").css('width', 530);			
	}else if((reset > 1200)&&(reset < 1400)){		
		$(".container").css('width', 1079);
		$(".inside-footer").css('width', 1079);	
		$(".first-container").css('width', 548);
		$(".navigation").css('width', 530);				
	}else if(reset > 1400){		
		$(".container").css('width', 1355);	
		$(".inside-footer").css('width', 1355);	
		$(".first-container").css('width', 825);
		$(".navigation").css('width', 813);			
	}	
}
$(window).resize(function () {
	resizescreen();
});
$(document).ready(function() {	
	resizescreen();
});
