$(document).ready(function(){
	$("#portfolio-menu").show(); // shows the portfolio switcher
	$("#portfolio-2,#portfolio-3,#portfolio-4").hide(); // hides the examples, except the first
	$("#portfolio-menu a").click(function(event){ // behaviour for switching between examples
		var sel = '#' + $(this).attr('rel');
		$("#portfolio-1,#portfolio-2,#portfolio-3,#portfolio-4").hide();
		$($(sel)).fadeIn('slow');
		$('#portfolio-menu a').removeAttr('id');
		$(this).attr('id','current');
	});
});

function hideit(){
 var a,b,c,d,e
 c='@'
 a='jam'
 e='jfbonh'
 b='es'
 d='am.com'
 document.write(a+b+c+e+d)
}
