// window.addEvent('domready',function() {
// 
// 
// 
// var list = $$('#itemList li');
// list.each(function(element) {
//  
// 	var fx = new Fx.Styles(element, {duration:200, wait:false});
//  
// 	element.addEvent('mouseenter', function(){
// 		fx.start({
// 			'margin-left': 15
// 		});
// 	});
//  
// 	element.addEvent('mouseleave', function(){
// 		fx.start({
// 			'margin-left': 0
// 		});
// 	});
//  
// });

function goTo(dest) {
	
	switch(dest) {
		
		case 1:
		window.location = "../blog";
		//window.location = "/system.html";
		break;
		
		case 2:
		window.location = "../portfolio";
		break;
		
		case 3:
		window.location = "/contact.html";
		break;
		
		case 4:
		window.location = "../resume";
		
	}
}

// *** --- ***

function thechange() {
 
  var fullPath = document.location.href;
    
	myPage = fullPath.substring(fullPath.lastIndexOf('com/') + 4, fullPath.lastIndexOf('/'));
	//alert(myPage);
	  
	if(myPage == "projects"){
		document.getElementById('projects').className = 'on';
	}else if(myPage == "blog.asp"){
		document.getElementById('blog').className = 'on';
		}
}
