	function resize_images() {
	// - 170
		if($("#center-main").width() < 1035) 
//		if($("#center-main").width() < 865) 
			$(".welcome-img").css("width", "100%");
		else
			$(".welcome-img").css("width", "800");



		if($("#center-main").width() < 926) 
//		if($("#center-main").width() < 756) 
			$(".welcome-img2").css("width", "100%");
		else
			$(".welcome-img2").css("width", "691");


		var head_img_width = $("#page-container ").width() - 304;
		$(".head-img").css("width", head_img_width);
	}

	$(window).resize(function() {
		resize_images();
	});

	$(document).ready(function() {
		resize_images();
	});

