 $(document).ready(function() {
	
	$(".notice").fadeOut(3500);
	
	$("#slide-images").cycle();
	
	$("a.grouped_elements").fancybox();

	$('#sort_order').sortable({items:'.project', containment:'parent', axis:'y', update: function() {
		$.post('/projects/sort', '_method=put&authenticity_token='+encodeURIComponent(AUTH_TOKEN)+'&'+$(this).sortable('serialize'));
	}});
 });
