jQuery().ready(function()
{
	
	var languageName = $('input[name=languageName]').val();
	
	$('#product_slider a.products').colorbox({
		opacity : 0.75,
		innerWidth : 375,
		title : function()
		{
			return '<strong>'+$(this).attr('title')+'</strong><br />Alle productspecificaties en prijzen zijn beschikbaar als u bent ingelogd.';
		},
		onComplete : function()
		{
			$.get('../site/form.php?languageName='+languageName, function(response) {
				$('#cboxLogin').empty().append(response);
				$.colorbox.resize();
				$('input[name="LoginName"]').inputDefault({ text: 'Inlognaam'});
				$('input[name="Password"]').inputDefault({ text: 'Wachtwoord'});
			});
		}
	});
	
});
