$(document).ready(function(){
	$(".priceBtn").click(function(){
		var tp = $(this).offset().top;
		$(this).find(".popup").fadeIn();
//alert(bl_hight);
//alert(tp);
		
	});
	$("#closePopup, #closePopup_t").click(function(){
		$(this).parent().parent().fadeOut();
		return false;
	});
	$(".news-row:last").css("border", "none");
	$("#open_feed_popup").click(function(){
		$("#feed_back_popup").fadeIn();
	});
	$("#close_popup").click(function(){
		$("#feed_back_popup").fadeOut();
	});
	$(".save_price").click(function(){
		$(".bl_price").fadeIn();
		return false;
	});
	$("#close_price").click(function(){
		$(".bl_price").fadeOut();
	});
});
