$(function() {
	$('input').each(function() { $(this).addClass(this.type); });
	$('.rollover').simpleImageRollover();
	
	$('#nav a:not(.selected)').hover(function() {
		$(this).stop().animate({color: '#E7234E'}, 200);
	}, function() {
		$(this).stop().animate({color: 'black'}, 200);
	})
	
});