// JavaScript Document

$(document).ready(function(){
	$(".show_massage_purchase a").click(function(){
		$(this).siblings(".newsLetter_box").fadeIn();											 
	});			
	$(".close1,#subscribe").click(function(){
		$(this).parents(".newsLetter_box").fadeOut();									   
	});
});