$(document).ready(function() {
	$(".info").css("left","-290px");
	$(".hover-info").hover(	  
		function (e) {
			$(".info").animate({
				left: '0px'
			}, 250, function() {});
			e.preventDefault();
		},
		function (e) {
			$(".info").animate({
				left: '-290px'
			}, 250, function() {});
			e.preventDefault();
		}
	);
	var etc = $(".navPortfolio ul").children().size()
	$(".nav-expand").toggle(
		function (e) {
			$(this).parent().animate({
				height: (17*etc)+50+'px'
			}, 250, function() {});
				e.preventDefault();
			},
		function (e) {
			$(this).parent().animate({
				height: '30px'
			}, 250, function() {});
				e.preventDefault();
			}
		);

		if ($('#page-projects').length) {
			$(".nav-expand").parent().css("height", (17*etc)+50+'px');
		}
	
});

