$(document).ready(function() {
	$("li#portfolio").click(function(event) {
		event.preventDefault();
	});	
	$("li#portfolio").click(function() {
		$(this).css({
		'background-color': 'cornflowerblue',
		'color': 'white'
		});				
	});
	$("li#portfolio").click(function() {
		$("li.subbutton").slideToggle(250);				
	});
});
