$(document).ready(function(){
	//1024x
	var widthS = $("#header").width();
	if (widthS <= 1024 ) {
		$("link").attr({href : "media/css/style1024.css"});
	}

	//larger number
	$(".numb").click(function () {
		$('#modal').show();
		$('.modal-mask').show();
	});
	$("#modal .but1").click(function () {
		$('#modal').hide();
		$('.modal-mask').hide();
	});

	//more services
	var count = 0;
	$(".still").click(function () {
		if(count == 0) {
			$('.text').hide();
			$('.text1').show();
		} else if(count == 1) {
			$('.text1').hide();
			$('.text2').show();
		} else if(count == 2) {
			$('.text2').hide();
			$('.text3').show();
		} else if(count == 3) {
			$('.text3').hide();
			$('.text4').show();
		}
		count += 1;
	});
});
