window.addEvent('domready', function(){
// Start sorting script

	var food = $$('#portfolio a.food');
    var ag = $$('#portfolio a.agriculture');
    var health = $$('#portfolio a.health');
	var other = $$('#portfolio a.other');
	var healthFood = $$('#portfolio a.healthFood');
	//On click: hide & disable links for ag, and health then show food
	$('workLink').addEvent('click', function(){
		ag.fade('in');
        health.fade('in');
		other.fade('in');
       food.fade('in');
	   healthFood.fade('in');
    });
	$('foodLink').addEvent('click', function(){
		ag.fade(0.2);
        health.fade(0.2);
		other.fade(0.2);
       food.fade('in');
	   healthFood.fade('in');
    });
    $('agricultureLink').addEvent('click', function(){
        food.fade(0.2);
        health.fade(0.2);
		other.fade(0.2);
        ag.fade('in');
	    healthFood.fade(0.2);
    });
    $('healthLink').addEvent('click', function(){
        food.fade(0.2);
        ag.fade(0.2);
		other.fade(0.2);
        health.fade('in');
	    healthFood.fade('in');
   });
	$('otherLink').addEvent('click', function(){
		ag.fade(0.2);
        health.fade(0.2);
       food.fade(0.2);
       other.fade('in');
	   healthFood.fade(0.2);
    });
// Start SqueezeBox script
	SqueezeBox.assign($$('a[rel=boxed]'), {
		size: {x: 850, y: 450},
		ajaxOptions: {
			method: 'get' // we use GET for requesting plain HTML (you can skip it, it is the default value)
		}
	}); // End Squeezebox sxcript
});

