$(document).ready(function(){
							   
							   
		
		$.get('zien.php', function(data) {
								 //  alert(data);
  					if(data == 'U heeft nog geen producten in uw offertemand!'){
						$('.title').text(data);
						$('.ajabas').html('');
					}
					else
					{
						$('.ajabas').html(data);	
					}
		});
		
		$('.rm').live('click', function(e) {
		  // Live handler called.
		  e.preventDefault();
			  
			  $.get($(this).attr('href'), function() {
									 //  alert(data);
				update();
			});
			  
		});
		
							   });

$(document).ready(function() {
    $('#header').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
});
