$(document).ready(function()
{
	$('#splashUp .nee').bind('click', function()
	{
		hideChat();
	});
	
	$('#splashUp .ja').bind('click', function()
	{
		var w = parseInt(screen.width);
		var h = screen.height;	
		
		window.open('http://www.ihelpu.nl/chatbot/(w1m5hdighelsu3jjnch34045)/chatbot.aspx?ug=2&l=cb', 'wChatwindow','height=575,width=310, left='  + (w - 265 ) + ', top=0,resizable=no, status=no');
		hideChat();
	});	
});

function showChat()
{
	$('#splashUp').animate({ 
		top: "+=363px"
	}, 2000);	
}

function hideChat()
{
	$('#splashUp').animate({ 
		top: "-=363px"
	}, 2000);		
}
