// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function showPortfolio(id) {
	var elements = $$('div.portfolio_item');
	for(var x = 0; x < elements.length; x++){
		elements[x].hide();
	}
	$(id).show();
}
