$(document).ready( function() {
	$('.i-museum-box')
	.css( "cursor", "pointer" )
	.click( function(){ location.href='/i-museum'; } );
	
	$('.laptop-box')
	.css( "cursor", "pointer" )
	.click( function(){ location.href='/laptopaanbiedingen'; } );
	
	$('.belasting-box')
	.css( "cursor", "pointer" )
	.click( function(){ location.href='/uwbelastingaangifte'; } );
} );

$('.contentElementTitle').livequery(
	      function() {
	          $(this).editable(ajaxPath+'contents/updateField', {
	             id        : 'data[Content][id]',
	             name      : 'data[Content][title]',
	             type      : 'autogrow',
	             cancel    : 'Annuleer',
	             submit    : 'Sla op',
	             width     : 350,
	             tooltip   : 'Klik om deze tekst aan te passen!',
	             cssclass  : 'editText'
	        }
	        );
	      }
	    );
