/**
 * @author daniel
 */
$(document).ready(function(){
	
	$('a.zoom').fancybox();
	
	$('.buy').click(function(){
		var ids = $(this).attr('id').split('-');
		$.ajax({
			'type':"POST",
			'url':ajaxurl,
			data:{
				'action':'addCart',
				'id':ids[1]
			},
			dataType:'JSON',
			success:function(reply){
				var lastoccurance = reply.lastIndexOf('}') + 1;
				reply = eval("(" + reply.substring(0,lastoccurance) + ")");
				if(!reply.error)
				{
					showNotice('Din vare er blevet lagt i kurven!<br />Se din kurv i toppen af højre kolonne.');
					if($('#sidebasket').hasClass('hidden'))
					{
						$('#sidebasket').removeClass('hidden');
					}
					$('#basket-list').html(reply.list);
				}
				else
				{
					showNotice(reply.error);
				}
			}
		});
		return false;
	});
	
});

function showNotice(text)
{
	$('#notice .msg').html(text);
	$('#notice').slideDown('fast',function(){
		setTimeout(function(){
			$('#notice').slideUp('fast');
		}, 3000);
	});
}

