$(document).ready(function(){
	//Close Live Chat, and Set Cookie to Hide Live Chat throughout User Session
	$('#btn-live-chat-close').click(function () {
		$('#live-chat-container').fadeOut();
		$.cookie("SGIVPLiveChat", 1);
	});
});

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=425,left = 287,top = 159');");
}

function scrollLink(id){
	var x=id;
	if(id){
		$('html, body').animate({
			scrollTop: $("#"+ x + "").offset().top
		}, 2000);
	}else{
		$('html').animate({scrollTop:0}, 'slow');
	}
};
