$(document).ready(function(){
	var q_hash = new Array(
		72236,
		18308,
		6134,
		6136,
		6137,
		72239,
		72240,
		72241,
		79318,
		95482
	);
	var count = q_hash['length'];
	for(var i = 0; i < count; i++){
		if (document['location']['search'].search(q_hash[i]) != -1) {
			$("#epson_style_div").css({
				//'top' : ($(document).height() - 240)/2 + 'px',
				'top' : '280px',
				'left' : ($(document).width() - 355)/2 + 'px'
			});
			$("#epson_style_div").fadeIn("slow");
			$("#epson_style_div_close").click(
				function(){
					$("#epson_style_div").css({
						'display' : "none"
					});
				}
			);
			$("#epson_style_div_click").click(
				function(){
					window.open("http://www.style.epson.ru");
				}
			);
			break;
		}
	}
});