$(document).ready(function(){
	$('#yes-btn').click(function(){
		var hash = document.location.hash.slice(1);		
		$.cookie('westa', 'true',{
			path: "/",
			domain: "westa.com.ua"
		});	
		document.location = hash;
	});
	$('#no-btn').click(function(){
        $('#sorry').show();
		return false;
    });
});

function validator(){
	if ($.cookie('westa') != 'true') {
		var path = document.location.pathname;
		document.location = '/' + document.location.pathname.split('/')[1] + '/cms/for_investor/disclaimer.html#' + path;
	}
}
