jQuery(document).ready(function($) {
	
	//$.cookie("thanks", null);
	
	if ($.cookie("thanks") == null || $.cookie("thanks") == false) {
		$("#standart").hide();
		$("#thanks").show();
	} else {
		$("#standart").show();
		$("#thanks").hide();
	}
	
	$("#closeThanks").click(function() {
		$.cookie("thanks", true);
		$("#standart").slideToggle(800);
		$("#thanks").slideToggle(800);
		
		return false;
	});
});

